This commit is contained in:
2025-06-29 05:21:40 +09:00
parent 934225f9e8
commit 8814be9ee9
4 changed files with 61 additions and 37 deletions
+1 -1
View File
@@ -5,7 +5,7 @@ type TabProps = { name: string
init?: boolean
children: React.ReactNode }
type Props = { children: React.ReactElement<{ name: string }>[] }
type Props = { children: React.ReactElement<TabProps>[] }
export const Tab = ({ children }: TabProps) => <>{children}</>