Skip to content

Commit 66805c0

Browse files
feat: create PropsTable component and update imports in documentation
1 parent 5c9853f commit 66805c0

File tree

4 files changed

+3
-3
lines changed

4 files changed

+3
-3
lines changed

apps/landing/src/app/(detail)/components/[component]/button/Api.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { PropsTable } from '@/components/props-table'
1+
import { PropsTable } from '@/components/PropsTable'
22

33
###### API
44

apps/landing/src/app/(detail)/components/[component]/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import { CustomH6 } from '@/components/mdx/components/CustomH6'
66
import { CustomParagraph } from '@/components/mdx/components/CustomParagraph'
77
import { CustomPre } from '@/components/mdx/components/CustomPre'
88
import { CustomStrong } from '@/components/mdx/components/CustomStrong'
9-
import { PropsTable } from '@/components/props-table'
9+
import { PropsTable } from '@/components/PropsTable'
1010
import { COMPONENT_GROUPS } from '@/constants'
1111
import { getDemos } from '@/utils/get-demos'
1212

apps/landing/src/components/props-table.tsx renamed to apps/landing/src/components/PropsTable.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import {
1111
TableHeaderCell,
1212
TableRoot,
1313
TableRow,
14-
} from './mdx/components/Table'
14+
} from './Table'
1515

1616
interface ComponentProp {
1717
property: string

0 commit comments

Comments
 (0)