Skip to content

Commit

Permalink
fix: Table コンポーネントの使われていない記述を削除 (#4921)
Browse files Browse the repository at this point in the history
  • Loading branch information
nabeliwo authored Sep 17, 2024
1 parent c9f2184 commit fe3e56f
Showing 1 changed file with 1 addition and 7 deletions.
8 changes: 1 addition & 7 deletions packages/smarthr-ui/src/components/Table/Table.tsx
Original file line number Diff line number Diff line change
@@ -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<VariantProps<typeof table>>
type ElementProps = Omit<ComponentProps<'table'>, keyof Props>

Expand Down

0 comments on commit fe3e56f

Please sign in to comment.