RootButton, ButtonA, ButtonB. というコンポーネントがあるとします。
RootButton
Ts
1const defaultProps={ 2 height:'10px', 3 width:'60px, 4 text:'' 5} 6 export const RootButton: React.FC<TButtonProps> = ({ 7 height, 8 width, 9 text 10 }) => { 11 const style = { 12 height, 13 width, 14 text 15 } 16 return ( 17 <button style={style}>{text}<button> 18 ) 19 } 20
このとき、ButtonA にはwidthのみRootButtonのdefault値を使い、haightとtextは指定、
ButtonA にはheightのみRootButtonのdefault値を使い、widthとtextは指定
する場合、どのような書き方になりますか?
あなたの回答
tips
プレビュー