Skip to content
Snippets Groups Projects
App.tsx 345 B
Newer Older
  • Learn to ignore specific revisions
  • import React from "react";
    import "./App.scss";
    import ExamplePage from "./pages/ExamplePage";
    import TopBar from "./organisms/TopBar/TopBar";
    
    import BottomBar from "./organisms/BottomBar/BottomBar";
    
    
    const App: React.FC = () => {
      return (
    
        <>
          <TopBar />
          <ExamplePage />
    
          <BottomBar />
    
    export default App;