Add The Gold Coin Game - a strategic two-player game where players move coins to acquire the gold coin
This commit is contained in:
parent
6af3ec81ef
commit
4f27765251
5 changed files with 399 additions and 0 deletions
12
src/pages/GoldCoinGamePage.tsx
Normal file
12
src/pages/GoldCoinGamePage.tsx
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
import React from 'react';
|
||||
import GoldCoinGame from '@/components/GoldCoinGame';
|
||||
|
||||
const GoldCoinGamePage = () => {
|
||||
return (
|
||||
<div className="container mx-auto px-4 py-8">
|
||||
<GoldCoinGame />
|
||||
</div>
|
||||
);
|
||||
};
|
||||
|
||||
export default GoldCoinGamePage;
|
||||
Loading…
Add table
Add a link
Reference in a new issue