Files
idlegame/src/ui/PlayPanel.tsx
T

10 lines
159 B
TypeScript

import { ActionPanel } from './ActionPanel';
export function PlayPanel() {
return (
<div className="space-y-6">
<ActionPanel />
</div>
);
}