kalendarz pre-pre-pre-alfa

This commit is contained in:
wrzesinski-hubert
2020-06-05 14:31:48 +02:00
parent 7e47aea64e
commit 75c6d20657
7 changed files with 270 additions and 0 deletions

View File

@ -2,6 +2,7 @@ import React, { useState } from "react";
import TopBar from "./components/TopBar/";
import Transfer from "./components/Transfer/";
import "./App.scss";
import Schedule from "./components/Calendar/";
function App() {
const [isOpen, setOpen] = useState(false);
@ -30,6 +31,7 @@ function App() {
setOpen(!isOpen);
}}
/>
<Schedule></Schedule>
<h1>{text}</h1>
</div>
);