aboutsummaryrefslogtreecommitdiffstats
path: root/spring-front/src/App.js
diff options
context:
space:
mode:
authorterminaldweller <thabogre@gmail.com>2022-03-31 13:28:41 +0000
committerterminaldweller <thabogre@gmail.com>2022-03-31 13:28:41 +0000
commit40bb640b169656dd33b15c189eb4146e05118ecd (patch)
tree333925f838d12ca4a676e16639691f38919cbdb4 /spring-front/src/App.js
parentwip (diff)
downloadmdrtl-40bb640b169656dd33b15c189eb4146e05118ecd.tar.gz
mdrtl-40bb640b169656dd33b15c189eb4146e05118ecd.zip
moved everything into one class
Diffstat (limited to 'spring-front/src/App.js')
-rw-r--r--spring-front/src/App.js6
1 files changed, 2 insertions, 4 deletions
diff --git a/spring-front/src/App.js b/spring-front/src/App.js
index 492930e..e965d51 100644
--- a/spring-front/src/App.js
+++ b/spring-front/src/App.js
@@ -1,6 +1,5 @@
import React from "react";
-import Left from "./components/Left.js";
-import Right from "./components/Right.js";
+import Editor from "./components/Editor.js";
export default class App extends React.Component {
constructor(props) {
@@ -10,8 +9,7 @@ export default class App extends React.Component {
render() {
return (
<div>
- <Left />
- <Right />
+ <Editor />
</div>
);
}