ft_transcendence/containers/react/src/pages/Game.jsx
2023-05-26 23:22:27 +02:00

18 lines
352 B
JavaScript

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