import { FunctionComponent } from 'react'; import { Game } from '@gecogvidanto/shared'; export interface GameRowProps { game: Game; } /** * Home page. */ declare const GameRow: FunctionComponent; export default GameRow;