diff options
author | brynnchernosky <56202540+brynnchernosky@users.noreply.github.com> | 2023-01-31 12:42:45 -0500 |
---|---|---|
committer | brynnchernosky <56202540+brynnchernosky@users.noreply.github.com> | 2023-01-31 12:42:45 -0500 |
commit | 6fba3c7fdaaed12d94dee359f520591e55cb76d8 (patch) | |
tree | 2b14f58ac48fe48a0b290a063440d07f2a172c93 /src/client/views/nodes/PhysicsSimulationApp.tsx | |
parent | e9210bd3c77bac0ad1bae17816baa5faa80bb706 (diff) |
convert from functional to class components
Diffstat (limited to 'src/client/views/nodes/PhysicsSimulationApp.tsx')
-rw-r--r-- | src/client/views/nodes/PhysicsSimulationApp.tsx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/client/views/nodes/PhysicsSimulationApp.tsx b/src/client/views/nodes/PhysicsSimulationApp.tsx index 2a314a723..414d61809 100644 --- a/src/client/views/nodes/PhysicsSimulationApp.tsx +++ b/src/client/views/nodes/PhysicsSimulationApp.tsx @@ -329,9 +329,7 @@ export default class App extends React.Component<{}, IState> { render () { return ( - <div><p>Hello world!</p></div> - ); - } + <p>Hello world!</p> // <div> // <div className="mechanicsSimulationContainer"> // <div @@ -560,4 +558,6 @@ export default class App extends React.Component<{}, IState> { // </div> // </div> // </div> + ); + } } |