13 lines
265 B
TypeScript
13 lines
265 B
TypeScript
import { Outlet } from 'react-router-dom'
|
|
import './Game.css'
|
|
|
|
export default function GameLayout() {
|
|
return (
|
|
<div className="game-layout">
|
|
<div className="game-content">
|
|
<Outlet />
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|