bank/routes/index.tsx

6 lines
107 B
TypeScript
Raw Normal View History

2024-08-24 07:54:43 -05:00
import Dashboard from '../islands/Dashboard.tsx'
2024-08-23 23:14:39 -05:00
export default function Home() {
2024-08-24 07:54:43 -05:00
return <Dashboard />
2024-08-23 23:14:39 -05:00
}