aboutsummaryrefslogtreecommitdiffstats
path: root/spring-front/src/App.js
diff options
context:
space:
mode:
authorterminaldweller <thabogre@gmail.com>2022-03-23 12:32:43 +0000
committerterminaldweller <thabogre@gmail.com>2022-03-23 12:32:43 +0000
commita5b28f29dd683191433a70b2c3c21e06de265717 (patch)
tree714dbfd5caf284df4373ba9a1503e9e5ba83292e /spring-front/src/App.js
parentwip (diff)
downloadmdrtl-a5b28f29dd683191433a70b2c3c21e06de265717.tar.gz
mdrtl-a5b28f29dd683191433a70b2c3c21e06de265717.zip
wip
Diffstat (limited to '')
-rw-r--r--spring-front/src/App.js12
1 files changed, 12 insertions, 0 deletions
diff --git a/spring-front/src/App.js b/spring-front/src/App.js
new file mode 100644
index 0000000..2393152
--- /dev/null
+++ b/spring-front/src/App.js
@@ -0,0 +1,12 @@
+import React from "react";
+import Left from "./components/Left.js";
+import Right from "./components/Right.js";
+
+export default function App() {
+ return (
+ <div>
+ <Left />
+ <Right />
+ </div>
+ );
+}