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

56 lines
1.8 KiB
TypeScript
Raw Normal View History

2022-02-04 01:14:51 +00:00
import {Heading, Chapter, Panel, Idiomatic as I, Box, ListUnordered} from "@steffo/bluelib-react"
2022-06-28 17:13:40 +00:00
import { NextPageContext } from "next"
2022-02-04 01:14:51 +00:00
import { Link } from "../../../components/link"
2022-02-04 17:41:40 +00:00
import { Warn1024 } from "../../../components/warn"
2022-02-04 01:14:51 +00:00
2022-06-28 17:13:40 +00:00
export async function getStaticProps(_context: NextPageContext) {
return {
props: {}
}
}
2022-02-04 01:14:51 +00:00
export default function Statistica() {
return <>
<Heading level={2}>
Statistica ed elementi di probabilità
</Heading>
<Chapter>
<Box>
<Heading level={3}>
Introduzione
</Heading>
<p>
Come Fisica, <I>Statistica ed elementi di probabilità</I> è stato un altro esame in cui il modello &quot;a carte mnemoniche&quot; mi ha aiutato un sacco a ricordare i concetti per l&apos;orale.
</p>
<p>
Spero che questi contenuti possano essere altrettanto utili a voi!
</p>
</Box>
</Chapter>
<Chapter>
<Box>
<Heading level={3}>
Materiale raccolto
</Heading>
<Chapter>
<Panel>
<Heading level={4}>
Appuntiweb
</Heading>
2022-02-04 17:41:40 +00:00
<Warn1024/>
2022-02-04 01:14:51 +00:00
<ListUnordered>
<ListUnordered.Item>
<Link href="/year2/statistica/teoria">
Appunti di teoria
</Link>
</ListUnordered.Item>
</ListUnordered>
</Panel>
</Chapter>
</Box>
</Chapter>
</>
}