summaryrefslogtreecommitdiffhomepage
path: root/src/App.tsx
diff options
context:
space:
mode:
authorrealtradam <[email protected]>2024-05-21 23:32:53 -0400
committerrealtradam <[email protected]>2024-05-21 23:32:53 -0400
commit80d64e04441ced7caecd238ae232e749d8e0dddf (patch)
treec41d7803a15aa99b51703bbecc56ec2ed2233431 /src/App.tsx
downloadmalcz.com-80d64e04441ced7caecd238ae232e749d8e0dddf.tar.gz
malcz.com-80d64e04441ced7caecd238ae232e749d8e0dddf.zip
initial setup of seperating frontend
Diffstat (limited to 'src/App.tsx')
-rw-r--r--src/App.tsx7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/App.tsx b/src/App.tsx
new file mode 100644
index 0000000..b594288
--- /dev/null
+++ b/src/App.tsx
@@ -0,0 +1,7 @@
+import React from "react";
+import Routes from "./routes";
+
+export default (props) => {
+ return (<Routes />);
+}
+