import css from "styled-jsx/css"; import { NextPage } from 'next' interface Props { data: object } const Table:NextPage = (data) => { const style = css` // 스타일 객체 생성 .table_wrap { width: 100%; max-width: 800px; height: auto; max-height: 500px; overflow-y: auto; margin-bottom: 50px; } .table_wrap::-webkit-scrollbar { width: 8px; } .table_wrap::-webkit-scrollbar-thumb { background-color: #dee2e6; ..