1
Fork 0
mirror of https://github.com/Steffo99/unisteffo.git synced 2024-11-25 17:34:20 +00:00
triennale-appunti-steffo/pages/_base.tsx

23 lines
507 B
TypeScript
Raw Normal View History

2022-02-03 18:47:06 +00:00
import { Heading, Chapter, Box, Idiomatic as I, Anchor as A } from '@steffo/bluelib-react'
2022-02-03 01:08:09 +00:00
import type { NextPage } from 'next'
const Page: NextPage = () => {
return <>
<Heading level={2}>
Titolo
</Heading>
<Chapter>
<Box>
<Heading level={3}>
Introduzione
</Heading>
<p>
Cose
</p>
</Box>
</Chapter>
</>
}
export default Page