From fe3e56fd95d1b802ce15114bf1e1962a847ff715 Mon Sep 17 00:00:00 2001 From: nabeliwo Date: Tue, 17 Sep 2024 10:39:35 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20Table=20=E3=82=B3=E3=83=B3=E3=83=9D?= =?UTF-8?q?=E3=83=BC=E3=83=8D=E3=83=B3=E3=83=88=E3=81=AE=E4=BD=BF=E3=82=8F?= =?UTF-8?q?=E3=82=8C=E3=81=A6=E3=81=84=E3=81=AA=E3=81=84=E8=A8=98=E8=BF=B0?= =?UTF-8?q?=E3=82=92=E5=89=8A=E9=99=A4=20(#4921)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/smarthr-ui/src/components/Table/Table.tsx | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/packages/smarthr-ui/src/components/Table/Table.tsx b/packages/smarthr-ui/src/components/Table/Table.tsx index 51cda1875f..db99e41b77 100644 --- a/packages/smarthr-ui/src/components/Table/Table.tsx +++ b/packages/smarthr-ui/src/components/Table/Table.tsx @@ -1,12 +1,6 @@ -import React, { ComponentProps, FC, PropsWithChildren, createContext, useMemo } from 'react' +import React, { ComponentProps, FC, PropsWithChildren, useMemo } from 'react' import { VariantProps, tv } from 'tailwind-variants' -export const TableGroupContext = createContext<{ - group: 'head' | 'body' -}>({ - group: 'body', -}) - type Props = PropsWithChildren> type ElementProps = Omit, keyof Props>