1
Fork 0
mirror of https://github.com/pds-nest/nest.git synced 2024-11-22 21:14:18 +00:00
pds-2021-g2-nest/code/frontend/src/App.js

39 lines
1,023 B
JavaScript
Raw Normal View History

2021-04-20 22:23:35 +00:00
import {useState} from "react"
import classNames from "classnames"
import Style from "./App.module.css"
2021-04-20 23:03:59 +00:00
import BoxWithHeader from "./components/BoxWithHeader"
2021-04-20 22:09:13 +00:00
2021-04-20 22:07:39 +00:00
2021-04-20 22:23:35 +00:00
export default function App() {
2021-04-20 22:37:25 +00:00
const [theme, ] = useState("ThemeDark");
2021-04-20 22:23:35 +00:00
2021-04-20 22:09:13 +00:00
return (
2021-04-20 23:03:59 +00:00
<div className={classNames(Style.App, theme)}>
<BoxWithHeader
header={"Ciao mondo!"}
>
<div>
<div>
Il CSS è pura magia.
</div>
<div>
Change my mind.
</div>
</div>
</BoxWithHeader>
<BoxWithHeader
header={"Questa è un'altra Box."}
body={
<div>
E altro testo.
</div>
}
2021-04-20 23:03:59 +00:00
/>
<BoxWithHeader
header={"Ecco, così va meglio."}
body={"No."}
2021-04-20 23:03:59 +00:00
/>
2021-04-20 22:09:13 +00:00
</div>
)
2021-04-20 22:07:39 +00:00
}