diff options
author | brynnchernosky <56202540+brynnchernosky@users.noreply.github.com> | 2023-02-03 00:09:08 -0500 |
---|---|---|
committer | brynnchernosky <56202540+brynnchernosky@users.noreply.github.com> | 2023-02-03 00:09:08 -0500 |
commit | e73ee7676183bb91687130ba9147e74a5f55420c (patch) | |
tree | e316cf6c87f423d17337209944b575cce2f12860 /src/client/views/nodes/PhysicsSimulationWall.tsx | |
parent | 6000ce6b65e6bd4c87fadc9c41f3508037854470 (diff) |
convert to class
Diffstat (limited to 'src/client/views/nodes/PhysicsSimulationWall.tsx')
-rw-r--r-- | src/client/views/nodes/PhysicsSimulationWall.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/client/views/nodes/PhysicsSimulationWall.tsx b/src/client/views/nodes/PhysicsSimulationWall.tsx index a31704d2f..2608e4772 100644 --- a/src/client/views/nodes/PhysicsSimulationWall.tsx +++ b/src/client/views/nodes/PhysicsSimulationWall.tsx @@ -12,10 +12,10 @@ export interface IWallProps { angleInDegrees: number; } -export default class App extends React.Component<IWallProps, {}> { +export default class App extends React.Component<IWallProps> { constructor(props: any) { - super(props) + super(props) } wallStyle = { |