diff options
Diffstat (limited to '')
-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> ); } |