From 08fc7e4c4fb8d396f15d4f8013393554bb5ddac5 Mon Sep 17 00:00:00 2001 From: from1to2 Date: Wed, 8 Nov 2023 15:20:07 +0900 Subject: [PATCH] =?UTF-8?q?feat:=20AdminReportList=20=EC=BB=B4=ED=8F=AC?= =?UTF-8?q?=EB=84=8C=ED=8A=B8=20=EC=98=88=EC=8B=9C=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../admin/components/AdminReportList.tsx | 89 +++++++++++++++++++ 1 file changed, 89 insertions(+) create mode 100644 src/pages/admin/components/AdminReportList.tsx diff --git a/src/pages/admin/components/AdminReportList.tsx b/src/pages/admin/components/AdminReportList.tsx new file mode 100644 index 00000000..fa30b240 --- /dev/null +++ b/src/pages/admin/components/AdminReportList.tsx @@ -0,0 +1,89 @@ +import styled from '@emotion/styled' + +import AdminReportListRow from '@/components/common/ListRow/AdminReportListRow' +import { palette } from '@/styles/palette' + +const AdminReportList = () => { + return ( + + + + + + + + + + + + + + + ) +} +const AdminReportListContainer = styled.div` + background-color: ${palette.WHITE}; + overflow: scroll; + height: 500px; +` +export default AdminReportList