This commit is contained in:
wrzesinski-hubert
2020-06-01 16:26:58 +02:00
parent 54cbd80f8b
commit 28b6869ad5
8 changed files with 163 additions and 136 deletions

View File

@ -1,11 +1,13 @@
import React from "react";
import TopBar from "./components/TopBar/index"
import TopBar from "./components/TopBar/"
import Transfer from "./components/Transfer/"
import "./App.scss";
function App() {
return (
<div className="App">
<TopBar></TopBar>
<TopBar/>
<Transfer/>
</div>
);
}