diff options
author | terminaldweller <thabogre@gmail.com> | 2022-03-31 13:28:41 +0000 |
---|---|---|
committer | terminaldweller <thabogre@gmail.com> | 2022-03-31 13:28:41 +0000 |
commit | 40bb640b169656dd33b15c189eb4146e05118ecd (patch) | |
tree | 333925f838d12ca4a676e16639691f38919cbdb4 /spring-front/src/App.js | |
parent | wip (diff) | |
download | mdrtl-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.js | 6 |
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> ); } |