14 lines
No EOL
277 B
TypeScript
14 lines
No EOL
277 B
TypeScript
import Layout from "@/components/Layout";
|
|
import GamesGallery from "@/components/GamesGallery";
|
|
|
|
const Games = () => {
|
|
return (
|
|
<Layout>
|
|
<div className="container mx-auto px-4 py-8">
|
|
<GamesGallery />
|
|
</div>
|
|
</Layout>
|
|
);
|
|
};
|
|
|
|
export default Games; |