interactives/src/pages/ChessboardRepaintPuzzlePage.tsx

12 lines
No EOL
329 B
TypeScript

import React from 'react';
import ChessboardRepaintPuzzle from '@/components/ChessboardRepaintPuzzle';
const ChessboardRepaintPuzzlePage = () => {
return (
<div className="min-h-screen bg-background">
<ChessboardRepaintPuzzle showSocialShare={true} />
</div>
);
};
export default ChessboardRepaintPuzzlePage;