feat: init
This commit is contained in:
3
web-app/app/routes/catch-all.tsx
Normal file
3
web-app/app/routes/catch-all.tsx
Normal file
@@ -0,0 +1,3 @@
|
||||
export function clientLoader() {
|
||||
throw new Response("Not Found", { status: 404 });
|
||||
}
|
||||
8
web-app/app/routes/home.tsx
Normal file
8
web-app/app/routes/home.tsx
Normal file
@@ -0,0 +1,8 @@
|
||||
|
||||
export default function Home() {
|
||||
return (
|
||||
<div>
|
||||
Home
|
||||
</div>
|
||||
)
|
||||
}
|
||||
7
web-app/app/routes/users.tsx
Normal file
7
web-app/app/routes/users.tsx
Normal file
@@ -0,0 +1,7 @@
|
||||
export default function Users() {
|
||||
return (
|
||||
<div className="px-3">
|
||||
유저목록
|
||||
</div>
|
||||
)
|
||||
}
|
||||
Reference in New Issue
Block a user