mirror of
https://github.com/Steffo99/unisteffo.git
synced 2024-11-25 01:14:21 +00:00
✨ Add Statistica
This commit is contained in:
parent
7c98a1af0e
commit
16813ca9f2
4 changed files with 2215 additions and 4 deletions
|
@ -8,6 +8,7 @@ import style from "./App.module.css"
|
|||
import Footer from "./components/Footer"
|
||||
import Fisica from "./routes/Fisica"
|
||||
import Apprendimento from "./routes/Apprendimento"
|
||||
import Statistica from "./routes/Statistica"
|
||||
|
||||
|
||||
export default function App() {
|
||||
|
@ -32,6 +33,9 @@ export default function App() {
|
|||
<Route path={"/apprendimento"}>
|
||||
<Apprendimento/>
|
||||
</Route>
|
||||
<Route path={"/statistica"}>
|
||||
<Statistica/>
|
||||
</Route>
|
||||
<Route path={"*"}>
|
||||
<Error404/>
|
||||
</Route>
|
||||
|
|
|
@ -16,7 +16,6 @@ import Todo from "../../components/Todo"
|
|||
|
||||
|
||||
const r = String.raw
|
||||
|
||||
const BLatex = ({ children, ...props }) => <LatexMath {...props} block={true}>{children}</LatexMath>
|
||||
const ILatex = ({ children, ...props }) => <LatexMath {...props} block={false}>{children}</LatexMath>
|
||||
const PLatex = ({ children, ...props }) => <BLatex style={{marginTop: "8px", marginBottom: "8px"}} {...props}>{children}</BLatex>
|
||||
|
|
|
@ -71,9 +71,9 @@ export default function Home({ skin, setSkin }) {
|
|||
</Anchor>
|
||||
</LI>
|
||||
<LI>
|
||||
<Anchor href={"https://old.uni.steffo.eu/#/statistica"}>
|
||||
🕸️ Statistica ed elementi di probabilità
|
||||
</Anchor>
|
||||
<BaseLink href={"/statistica"}>
|
||||
✨ Statistica ed elementi di probabilità
|
||||
</BaseLink>
|
||||
</LI>
|
||||
<LI>
|
||||
<Anchor href={"https://github.com/Steffo99/appunti-universitari/tree/master/2019_SistemiOperativi"}>
|
||||
|
|
2208
src/routes/Statistica/index.js
Normal file
2208
src/routes/Statistica/index.js
Normal file
File diff suppressed because it is too large
Load diff
Loading…
Reference in a new issue