'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 테스트입니다.

) }