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,4 @@
.p {
font-weight: 500;
line-height: 1.6em;
}

View file

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