diff options
author | brynnchernosky <56202540+brynnchernosky@users.noreply.github.com> | 2023-02-01 14:43:25 -0500 |
---|---|---|
committer | brynnchernosky <56202540+brynnchernosky@users.noreply.github.com> | 2023-02-01 14:43:25 -0500 |
commit | 6000ce6b65e6bd4c87fadc9c41f3508037854470 (patch) | |
tree | 4e57c29535975630abf8927a2b876d0f806208a9 /src/client/views/nodes/PhysicsSimulationApp.tsx | |
parent | 60ed47bf843704f2f4a4ccd152e15fb96a5c375e (diff) |
keep switching to class components
Diffstat (limited to 'src/client/views/nodes/PhysicsSimulationApp.tsx')
-rw-r--r-- | src/client/views/nodes/PhysicsSimulationApp.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/nodes/PhysicsSimulationApp.tsx b/src/client/views/nodes/PhysicsSimulationApp.tsx index 2277c7875..bd218f63b 100644 --- a/src/client/views/nodes/PhysicsSimulationApp.tsx +++ b/src/client/views/nodes/PhysicsSimulationApp.tsx @@ -1,6 +1,6 @@ import React = require('react'); import "./PhysicsSimulationBox.scss"; -import Weight from "./PhysicsSimulationWeight"; +import Weight, { IForce } from "./PhysicsSimulationWeight"; import Wall from "./PhysicsSimulationWall" import Wedge from "./PhysicsSimulationWedge" import { props, any } from 'bluebird'; |