import GreyReactBox from 'grey-react-box'; import React from 'react'; import ControllerState from './ControllerState'; export default class Controller extends GreyReactBox{ static Context = React.createContext(undefined as any); constructor() { super(new ControllerState()); } }