This commit is contained in:
AlexE030
2023-05-04 12:40:41 +02:00
4 changed files with 120 additions and 19 deletions
+9 -2
View File
@@ -4,14 +4,21 @@ import StatusBar from "@/components/StatusBar";
import Button from "@/components/Button";
import {arrowLeft, arrowRight} from "@/components/Icons";
import WeekSelector from "@/components/WeekSelector";
import PopUp from "@/components/PopUp";
const inter = Inter({subsets: ['latin']})
export default function Home(p) {
const [pr, setPr] = useState(0)
return (
<WeekSelector />
<>
<WeekSelector />
<PopUp/>
</>
)
}