eslint 적용

This commit is contained in:
2026-04-08 08:42:04 +09:00
parent 225cf0c9ed
commit 1fb7e8df42
8 changed files with 336 additions and 24 deletions

View File

@@ -1,8 +1,9 @@
import {type RouteConfig} from "@react-router/dev/routes";
import type { RouteConfig } from '@react-router/dev/routes';
import { index, route } from '@react-router/dev/routes';
export default [
index("routes/home.tsx"),
route('users', './routes/users.tsx'),
route('*', './routes/catch-all.tsx'),
index('routes/home.tsx'),
route('users', './routes/users.tsx'),
route('*', './routes/catch-all.tsx'),
] satisfies RouteConfig;