crush-level-web/src/app/(main)/home/components/Story/index.tsx

8 lines
90 B
TypeScript
Raw Normal View History

2025-12-17 10:13:47 +00:00
'use client';
2025-12-09 09:13:46 +00:00
const Story = () => {
2025-12-17 10:13:47 +00:00
return <div>Story</div>;
};
2025-12-09 09:13:46 +00:00
2025-12-17 10:13:47 +00:00
export default Story;