feat: initial webapp structure from notion2site

This commit is contained in:
Travis Fischer
2021-01-15 11:31:09 -05:00
parent 253400fba9
commit 5765d3f5bc
47 changed files with 1894 additions and 68 deletions

10
components/Loading.tsx Normal file
View File

@@ -0,0 +1,10 @@
import * as React from 'react'
import { LoadingIcon } from './LoadingIcon'
import styles from './styles.module.css'
export const Loading: React.FC = () => (
<div className={styles.container}>
<LoadingIcon />
</div>
)