From 78f77e8c6ea9b329292d85d89946b5bb3e436406 Mon Sep 17 00:00:00 2001 From: yoosangwook Date: Tue, 6 Aug 2024 16:29:48 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20=EB=B6=88=ED=95=84=EC=9A=94=20=ED=8F=B4?= =?UTF-8?q?=EB=8D=94=20=EB=B0=8F=20=ED=8C=8C=EC=9D=BC=20=EC=82=AD=EC=A0=9C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../changelog copy/changelog.module.css | 4 - src/app/[locale]/changelog copy/page.jsx | 73 ------------------- 2 files changed, 77 deletions(-) delete mode 100644 src/app/[locale]/changelog copy/changelog.module.css delete mode 100644 src/app/[locale]/changelog copy/page.jsx diff --git a/src/app/[locale]/changelog copy/changelog.module.css b/src/app/[locale]/changelog copy/changelog.module.css deleted file mode 100644 index 273a4a34..00000000 --- a/src/app/[locale]/changelog copy/changelog.module.css +++ /dev/null @@ -1,4 +0,0 @@ -.test { - @apply bg-red-500; - @apply text-2xl; -} diff --git a/src/app/[locale]/changelog copy/page.jsx b/src/app/[locale]/changelog copy/page.jsx deleted file mode 100644 index ad626beb..00000000 --- a/src/app/[locale]/changelog copy/page.jsx +++ /dev/null @@ -1,73 +0,0 @@ -'use client' - -import { Button, Table, TableBody, TableCell, TableColumn, TableHeader, TableRow } from '@nextui-org/react' -import Hero from '@/components/Hero' -import QSelect from '@/components/ui/QSelect' -import styles from './changelog.module.css' -import { get } from '@/lib/Axios' - -export default function changelogPage() { - const testVar = process.env.NEXT_PUBLIC_TEST - - const handleUsers = async () => { - const users = await get('/api/user/find-all') - console.log(users) - } - - const data = [ - { - id: 1, - author: 'SWYOO', - contents: '버튼 정리(템플릿 적용)', - date: '2024.07.16', - }, - { - id: 2, - author: 'SWYOO', - contents: 'README.md 파일 이미지 경로 수정', - date: '2024.07.17', - }, - { - id: 3, - author: 'SWYOO', - contents: '', - date: '', - }, - ] - return ( - <> - -
이 영역은 테스트입니다.
-
- - - DATE - NAME - CONTENTS - - - {data.map((item) => ( - - {item.date} - {item.author} - {item.contents} - - ))} - -
-
-
- -
-
{testVar}
-
-
- -
-
-
-

Sass 테스트입니다.

-
- - ) -}