aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/nodes/PhysicsSimulationBox.tsx
blob: b62caf926e38f0f48b690b708473dfee777ee38c (plain)
1
2
3
4
5
6
7
8
9
import "./PhysicsSimulationBox.scss";
import { FieldView, FieldViewProps } from './FieldView';
import React = require('react');

export default class PhysicsSimulationBox extends React.Component<FieldViewProps> {
 public static LayoutString(fieldKey: string) { return FieldView.LayoutString(PhysicsSimulationBox, fieldKey); }

 render () { return (<p>Hello world!</p>)}
}