Add Zeckendorf Representation interactive under Discrete Math > Foundations
This commit is contained in:
parent
bb8c3ef58d
commit
c8d3475104
5 changed files with 270 additions and 0 deletions
13
src/pages/ZeckendorfGamePage.tsx
Normal file
13
src/pages/ZeckendorfGamePage.tsx
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
import ZeckendorfGame from '@/components/ZeckendorfGame';
|
||||
|
||||
const ZeckendorfGamePage = () => {
|
||||
return (
|
||||
<div className="min-h-screen bg-background p-6">
|
||||
<div className="max-w-4xl mx-auto">
|
||||
<ZeckendorfGame />
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
};
|
||||
|
||||
export default ZeckendorfGamePage;
|
||||
Loading…
Add table
Add a link
Reference in a new issue