|
|
|
|
|
by TomMarius
2267 days ago
|
|
const MyComponent: React.FC<{style?:React.CSSProperties}> = (props) => <div style={{margin: 16, ...props.style}}>{props.children}</div>
I don't see any issue; additionally, it's well typed and you have fine control over it! |
|