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>