import './Games.css'; import React from "react" import { NavLink, Routes, Route } from "react-router-dom"; import NewGame from './games/view/NewGame'; import GameProposals from './games/view/GameProposals'; import ActiveGames from './games/view/ActiveGames'; import GamesArchive from './games/view/GamesArchive'; import Create from './games/action/Create'; import Reject from './games/action/Reject'; import Cancel from './games/action/Cancel'; import Accept from './games/action/Accept'; import DrawReq from './games/action/DrawReq'; import DrawAcq from './games/action/DrawAcq'; import Surrender from './games/action/Surrender'; import Backward from './games/action/Backward'; import Forward from './games/action/Forward'; import GameBoard from './games/GameBoard'; export default function Games({ gamesReducer, user }) { return (