Add Craps game interactive
This commit is contained in:
parent
f72073358b
commit
36d3b20bff
3 changed files with 277 additions and 0 deletions
12
src/pages/CrapsGamePage.tsx
Normal file
12
src/pages/CrapsGamePage.tsx
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
import Layout from "@/components/Layout";
|
||||
import CrapsGame from "@/components/CrapsGame";
|
||||
|
||||
const CrapsGamePage = () => {
|
||||
return (
|
||||
<Layout>
|
||||
<CrapsGame showSocialShare={true} />
|
||||
</Layout>
|
||||
);
|
||||
};
|
||||
|
||||
export default CrapsGamePage;
|
||||
Loading…
Add table
Add a link
Reference in a new issue