1
Fork 0
mirror of https://github.com/Steffo99/unisteffo.git synced 2024-11-22 16:04:21 +00:00
triennale-appunti-steffo/pages/year4/scidata/teoria.tsx

29 lines
679 B
TypeScript
Raw Normal View History

2022-09-30 10:30:08 +00:00
import {Heading, Chapter, Box, ListUnordered, ListOrdered, Parenthesis, Idiomatic as I, BringAttention as B} from "@steffo/bluelib-react"
import type { NextPage, NextPageContext } from 'next'
import { Link } from '../../../components/link'
export async function getStaticProps(_context: NextPageContext) {
return {
props: {}
}
}
const Page: NextPage = () => {
return <>
<Heading level={2}>
<Link href="/year4/scidata">
Elaborazione dati scientifici
</Link>
</Heading>
<Chapter>
<Box todo>
TODO
</Box>
</Chapter>
</>
}
export default Page