summaryrefslogtreecommitdiff
path: root/client/src/App.js
diff options
context:
space:
mode:
Diffstat (limited to 'client/src/App.js')
-rw-r--r--client/src/App.js12
1 files changed, 12 insertions, 0 deletions
diff --git a/client/src/App.js b/client/src/App.js
new file mode 100644
index 0000000..c39f14e
--- /dev/null
+++ b/client/src/App.js
@@ -0,0 +1,12 @@
+import React from 'react'
+import Index from './routes'
+
+const App = () => {
+ return (
+ <>
+ <Index />
+ </>
+ )
+}
+
+export default App