aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/nodes/PhysicsSimulationApp.tsx
diff options
context:
space:
mode:
authorbrynnchernosky <56202540+brynnchernosky@users.noreply.github.com>2023-01-31 12:42:45 -0500
committerbrynnchernosky <56202540+brynnchernosky@users.noreply.github.com>2023-01-31 12:42:45 -0500
commit6fba3c7fdaaed12d94dee359f520591e55cb76d8 (patch)
tree2b14f58ac48fe48a0b290a063440d07f2a172c93 /src/client/views/nodes/PhysicsSimulationApp.tsx
parente9210bd3c77bac0ad1bae17816baa5faa80bb706 (diff)
convert from functional to class components
Diffstat (limited to 'src/client/views/nodes/PhysicsSimulationApp.tsx')
-rw-r--r--src/client/views/nodes/PhysicsSimulationApp.tsx6
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>
+ );
+ }
}