frontend/src/App.tsx

14 lines
204 B
TypeScript
Raw Normal View History

2020-05-24 18:32:11 +02:00
import React from "react";
2020-05-27 17:31:50 +02:00
import TopBar from "./components/TopBar/index"
2020-05-24 18:32:11 +02:00
import "./App.scss";
function App() {
2020-05-24 18:32:11 +02:00
return (
<div className="App">
2020-05-27 17:31:50 +02:00
<TopBar></TopBar>
2020-05-24 18:32:11 +02:00
</div>
);
}
export default App;