diff options
author | terminaldweller <thabogre@gmail.com> | 2022-03-31 13:23:18 +0000 |
---|---|---|
committer | terminaldweller <thabogre@gmail.com> | 2022-03-31 13:23:18 +0000 |
commit | 410ef6c2ca87e0cd3a8d3c27b2cef7bb1ade0ba0 (patch) | |
tree | bed6975ab6078633156b066f9b55c9d3bc483960 /spring-front/src/App.js | |
parent | wip (diff) | |
download | mdrtl-410ef6c2ca87e0cd3a8d3c27b2cef7bb1ade0ba0.tar.gz mdrtl-410ef6c2ca87e0cd3a8d3c27b2cef7bb1ade0ba0.zip |
wip
Diffstat (limited to '')
-rw-r--r-- | spring-front/src/App.js | 20 |
1 files changed, 13 insertions, 7 deletions
diff --git a/spring-front/src/App.js b/spring-front/src/App.js index 2393152..492930e 100644 --- a/spring-front/src/App.js +++ b/spring-front/src/App.js @@ -2,11 +2,17 @@ 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> - ); +export default class App extends React.Component { + constructor(props) { + super(props); + } + + render() { + return ( + <div> + <Left /> + <Right /> + </div> + ); + } } |