🐙
component から props の型を取得する
Storybook で props 型が必要だけど export したくなかったので。
方法 1
import { ComponentProps } from 'react'
type Props = ComponentProps<typeof TargetComponent>
方法 2(古い)
type Props = Parameters<typeof TargetComponent>[0]
Storybook で props 型が必要だけど export したくなかったので。
import { ComponentProps } from 'react'
type Props = ComponentProps<typeof TargetComponent>
type Props = Parameters<typeof TargetComponent>[0]
Discussion