Add Assisted Nim Game and update components

This commit is contained in:
Neeldhara Misra 2025-07-22 03:35:33 +05:30
parent 3705152d34
commit 6af3ec81ef
6 changed files with 435 additions and 0 deletions

View file

@ -0,0 +1,12 @@
import React from 'react';
import AssistedNimGame from '@/components/AssistedNimGame';
const AssistedNimGamePage = () => {
return (
<div className="container mx-auto px-4 py-8">
<AssistedNimGame />
</div>
);
};
export default AssistedNimGamePage;