Set up API spec and basic components

This commit is contained in:
Ben Grant 2023-05-20 01:52:44 +10:00
parent 2adecd13f7
commit 61bd31eb7e
20 changed files with 353 additions and 26 deletions

View file

@ -0,0 +1,5 @@
.content {
width: 600px;
margin: 20px auto;
max-width: calc(100% - 60px);
}

View file

@ -0,0 +1,10 @@
import styles from './Content.module.scss'
interface ContentProps {
children: React.ReactNode
}
const Content = (props: ContentProps) =>
<div className={styles.content} {...props} />
export default Content