Files
fund-tracer/frontend/src/App.tsx

7 lines
144 B
TypeScript
Raw Normal View History

2026-03-11 16:28:04 +08:00
import { useRoutes } from 'react-router-dom';
import { routes } from './routes';
export default function App() {
return useRoutes(routes);
}