interactives/src/pages/PlateSwapPuzzlePage.tsx

12 lines
No EOL
289 B
TypeScript

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