aboutsummaryrefslogtreecommitdiffstats
path: root/spring-front/src/App.js
diff options
context:
space:
mode:
Diffstat (limited to 'spring-front/src/App.js')
-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>
+ );
+}