Skip to content

Commit eacc034

Browse files
committed
chore: 객체 목록 상단에 어떤 객체인지 보이도록 수정
1 parent eccf78b commit eacc034

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

apps/pyconkr-admin/src/components/layouts/admin_list.tsx

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ import {
1010
TableCell,
1111
TableHead,
1212
TableRow,
13+
Typography,
1314
} from "@mui/material";
1415
import { ErrorBoundary, Suspense } from "@suspensive/react";
1516
import * as React from "react";
@@ -43,6 +44,10 @@ const InnerAdminList: React.FC<AdminListProps> = ErrorBoundary.with(
4344

4445
return (
4546
<Stack sx={{ flexGrow: 1, width: "100%", minHeight: "100%" }}>
47+
<Typography variant="h5">
48+
{app.toUpperCase()} &gt; {resource.toUpperCase()} &gt; 목록
49+
</Typography>
50+
<br />
4651
<Box>
4752
<Button
4853
variant="contained"

0 commit comments

Comments
 (0)