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={{
|
|
|
|
children: "Ciao mondo!"
|
|
|
|
}}
|
|
|
|
body={{
|
|
|
|
children: (
|
|
|
|
<div>
|
|
|
|
<div>
|
|
|
|
Il CSS è pura magia.
|
|
|
|
</div>
|
|
|
|
<div>
|
|
|
|
Change my mind.
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
),
|
|
|
|
}}
|
|
|
|
/>
|
|
|
|
<BoxWithHeader
|
|
|
|
header={{
|
|
|
|
children: "Questa è un'altra Box."
|
|
|
|
}}
|
|
|
|
body={{
|
|
|
|
children: (
|
|
|
|
<div>
|
|
|
|
E altro testo.
|
|
|
|
</div>
|
|
|
|
)
|
|
|
|
}}
|
|
|
|
/>
|
|
|
|
<BoxWithHeader
|
|
|
|
header={{
|
|
|
|
children: "Ecco, così va meglio.",
|
|
|
|
}}
|
|
|
|
body={{
|
|
|
|
children: "No."
|
|
|
|
}}
|
|
|
|
/>
|
2021-04-20 22:09:13 +00:00
|
|
|
</div>
|
|
|
|
)
|
2021-04-20 22:07:39 +00:00
|
|
|
}
|