ft_transcendence/containers/react/src/pages/Game.tsx
Little Dipper 263e3332a1 js to ts
2023-06-18 21:22:25 +02:00

18 lines
352 B
TypeScript

import React from "react";
import PlayButton from "../components/Game/PlayButton";
import Ranking from "../components/Game/Ranking";
import '../styles/Game.css'
function Game(){
return (
<div className="game">
<div className="game">
<Ranking/>
</div>
<div className="game">
<PlayButton/>
</div>
</div>
)
}
export default Game