14 lines
318 B
TypeScript
14 lines
318 B
TypeScript
import Layout from "@/components/Layout";
|
|
import BagchalGame from "@/components/BagchalGame";
|
|
|
|
const BagchalGamePage = () => {
|
|
return (
|
|
<Layout>
|
|
<div className="container mx-auto px-4 py-8">
|
|
<BagchalGame showSocialShare={true} />
|
|
</div>
|
|
</Layout>
|
|
);
|
|
};
|
|
|
|
export default BagchalGamePage;
|