라우트 추가 (#2)
Reviewed-on: #2 Co-authored-by: Jinseok (심진석) <jinseok.sim@tf.dabeeo.com> Co-committed-by: Jinseok (심진석) <jinseok.sim@tf.dabeeo.com>
This commit was merged in pull request #2.
This commit is contained in:
0
web-app/app/routes/code/page.tsx
Normal file
0
web-app/app/routes/code/page.tsx
Normal file
@@ -1,7 +0,0 @@
|
||||
export default function Home() {
|
||||
return (
|
||||
<div>
|
||||
Home
|
||||
</div>
|
||||
);
|
||||
}
|
||||
0
web-app/app/routes/hyper-parameter/page.tsx
Normal file
0
web-app/app/routes/hyper-parameter/page.tsx
Normal file
9
web-app/app/routes/imagery/[id]/page.tsx
Normal file
9
web-app/app/routes/imagery/[id]/page.tsx
Normal file
@@ -0,0 +1,9 @@
|
||||
import type { Route } from './+types/page';
|
||||
|
||||
export default function Page({ params }: Route.ComponentProps) {
|
||||
return (
|
||||
<div>
|
||||
영상 상세 id: {params.imageryId}
|
||||
</div>
|
||||
);
|
||||
}
|
||||
5
web-app/app/routes/imagery/page.tsx
Normal file
5
web-app/app/routes/imagery/page.tsx
Normal file
@@ -0,0 +1,5 @@
|
||||
export default function Page() {
|
||||
return (
|
||||
<div>영상관리 목록</div>
|
||||
);
|
||||
}
|
||||
0
web-app/app/routes/inference/[id]/page.tsx
Normal file
0
web-app/app/routes/inference/[id]/page.tsx
Normal file
7
web-app/app/routes/inference/page.tsx
Normal file
7
web-app/app/routes/inference/page.tsx
Normal file
@@ -0,0 +1,7 @@
|
||||
export default function Page() {
|
||||
return (
|
||||
<div>
|
||||
추론목록
|
||||
</div>
|
||||
)
|
||||
}
|
||||
0
web-app/app/routes/labeling/label/page.tsx
Normal file
0
web-app/app/routes/labeling/label/page.tsx
Normal file
0
web-app/app/routes/labeling/review/page.tsx
Normal file
0
web-app/app/routes/labeling/review/page.tsx
Normal file
10
web-app/app/routes/layout.tsx
Normal file
10
web-app/app/routes/layout.tsx
Normal file
@@ -0,0 +1,10 @@
|
||||
import { Outlet } from 'react-router';
|
||||
|
||||
export default function Layout() {
|
||||
return (
|
||||
<div>
|
||||
기본 레이아웃
|
||||
<Outlet />
|
||||
</div>
|
||||
);
|
||||
}
|
||||
0
web-app/app/routes/log/audit/page.tsx
Normal file
0
web-app/app/routes/log/audit/page.tsx
Normal file
0
web-app/app/routes/log/system/page.tsx
Normal file
0
web-app/app/routes/log/system/page.tsx
Normal file
10
web-app/app/routes/login/layout.tsx
Normal file
10
web-app/app/routes/login/layout.tsx
Normal file
@@ -0,0 +1,10 @@
|
||||
import { Outlet } from 'react-router';
|
||||
|
||||
export default function Layout() {
|
||||
return (
|
||||
<div>
|
||||
인증 레이아웃
|
||||
<Outlet />
|
||||
</div>
|
||||
);
|
||||
}
|
||||
5
web-app/app/routes/login/page.tsx
Normal file
5
web-app/app/routes/login/page.tsx
Normal file
@@ -0,0 +1,5 @@
|
||||
export default function Page() {
|
||||
return (
|
||||
<div>로그인 페이지</div>
|
||||
);
|
||||
}
|
||||
0
web-app/app/routes/model/[id]/page.tsx
Normal file
0
web-app/app/routes/model/[id]/page.tsx
Normal file
0
web-app/app/routes/model/page.tsx
Normal file
0
web-app/app/routes/model/page.tsx
Normal file
0
web-app/app/routes/schedule/page.tsx
Normal file
0
web-app/app/routes/schedule/page.tsx
Normal file
5
web-app/app/routes/user/page.tsx
Normal file
5
web-app/app/routes/user/page.tsx
Normal file
@@ -0,0 +1,5 @@
|
||||
export default function Page() {
|
||||
return (
|
||||
<div>사용자관리</div>
|
||||
);
|
||||
}
|
||||
@@ -1,7 +0,0 @@
|
||||
export default function Users() {
|
||||
return (
|
||||
<div className="px-3">
|
||||
유저목록
|
||||
</div>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user