あのぞんブログ

component から props の型を取得する

2021-07-05

Storybook で props 型が必要だけど export したくなかったので。

方法 1

import { ComponentProps } from 'react'

type Props = ComponentProps<typeof TargetComponent>

方法 2(古い)

type Props = Parameters<typeof TargetComponent>[0]

© 2021 あのぞんびより All Rights Reserved