Signed-off-by: Avior <florian.bouillon@delta-wings.net>
This commit is contained in:
2020-01-04 17:35:30 +01:00
parent e5fb01eea8
commit a0f1799114
51 changed files with 879 additions and 261 deletions

View File

@ -1,9 +1,10 @@
import React from 'react'
interface Props {
}
interface Props {}
export default class Name extends React.Component<Props, {}> {
interface States {}
export default class Name extends React.Component<Props, States> {
constructor(props: Props) {
super(props)
}