このコミットが含まれているのは:
2025-06-29 05:21:40 +09:00
コミット 8814be9ee9
4個のファイルの変更61行の追加37行の削除
+1 -1
ファイルの表示
@@ -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}</>