summaryrefslogtreecommitdiff
path: root/src/App.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/App.tsx')
-rw-r--r--src/App.tsx16
1 files changed, 0 insertions, 16 deletions
diff --git a/src/App.tsx b/src/App.tsx
deleted file mode 100644
index 27fc180..0000000
--- a/src/App.tsx
+++ /dev/null
@@ -1,16 +0,0 @@
-import React from 'react';
-import { Outlet } from 'react-router-dom';
-import CssBaseline from '@mui/material/CssBaseline';
-import NavBar from './components/NavBar';
-
-function App() {
- return (
- <>
- <CssBaseline />
- <NavBar />
- <Outlet />
- </>
- );
-}
-
-export default App;