Signed-off-by: Avior <florian.bouillon@delta-wings.net>
This commit is contained in:
2019-12-16 23:59:00 +01:00
parent f19f4f43a6
commit 70f05363e2
33 changed files with 8242 additions and 0 deletions

15
components/default.tsx Normal file
View File

@ -0,0 +1,15 @@
import React from 'react'
interface Props {
}
export default class Name extends React.Component<Props, {}> {
constructor(props: Props) {
super(props)
}
render() {
return (
<span></span>
)
}
}