import React, { FunctionComponent, useContext, } from 'react'; import GameView from './game-view.tsx'; import SetupView from './setup-view'; import { StoreContext } from './store'; const App: FunctionComponent = () => { const { state } = useContext(StoreContext); const { view } = state; return (