Files
todo/app/page.tsx
Mayne0213 3806344351 INIT(app): initial commit with FSD architecture
- Initialize Todo app structure
- Implement Feature-Sliced Design
2025-10-01 11:24:40 +09:00

8 lines
117 B
TypeScript

export default function Home() {
return (
<div>
This page will be filled with Todo App
</div>
);
}