mirror of
https://github.com/Steffo99/unisteffo.git
synced 2024-11-25 09:24: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 Footer from "./components/Footer"
|
||||||
import Fisica from "./routes/Fisica"
|
import Fisica from "./routes/Fisica"
|
||||||
import Apprendimento from "./routes/Apprendimento"
|
import Apprendimento from "./routes/Apprendimento"
|
||||||
|
import Statistica from "./routes/Statistica"
|
||||||
|
|
||||||
|
|
||||||
export default function App() {
|
export default function App() {
|
||||||
|
@ -32,6 +33,9 @@ export default function App() {
|
||||||
<Route path={"/apprendimento"}>
|
<Route path={"/apprendimento"}>
|
||||||
<Apprendimento/>
|
<Apprendimento/>
|
||||||
</Route>
|
</Route>
|
||||||
|
<Route path={"/statistica"}>
|
||||||
|
<Statistica/>
|
||||||
|
</Route>
|
||||||
<Route path={"*"}>
|
<Route path={"*"}>
|
||||||
<Error404/>
|
<Error404/>
|
||||||
</Route>
|
</Route>
|
||||||
|
|
|
@ -16,7 +16,6 @@ import Todo from "../../components/Todo"
|
||||||
|
|
||||||
|
|
||||||
const r = String.raw
|
const r = String.raw
|
||||||
|
|
||||||
const BLatex = ({ children, ...props }) => <LatexMath {...props} block={true}>{children}</LatexMath>
|
const BLatex = ({ children, ...props }) => <LatexMath {...props} block={true}>{children}</LatexMath>
|
||||||
const ILatex = ({ children, ...props }) => <LatexMath {...props} block={false}>{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>
|
const PLatex = ({ children, ...props }) => <BLatex style={{marginTop: "8px", marginBottom: "8px"}} {...props}>{children}</BLatex>
|
||||||
|
|
|
@ -71,9 +71,9 @@ export default function Home({ skin, setSkin }) {
|
||||||
</Anchor>
|
</Anchor>
|
||||||
</LI>
|
</LI>
|
||||||
<LI>
|
<LI>
|
||||||
<Anchor href={"https://old.uni.steffo.eu/#/statistica"}>
|
<BaseLink href={"/statistica"}>
|
||||||
🕸️ Statistica ed elementi di probabilità
|
✨ Statistica ed elementi di probabilità
|
||||||
</Anchor>
|
</BaseLink>
|
||||||
</LI>
|
</LI>
|
||||||
<LI>
|
<LI>
|
||||||
<Anchor href={"https://github.com/Steffo99/appunti-universitari/tree/master/2019_SistemiOperativi"}>
|
<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