I’m changing a component from jsx to tsx and I’m having a typescript problem with a component that is using MaterialUI Grid. This is the code:
const GridItem = ({ style }: React.CSSProperties) => (
<Grid item style={{ ...{ textAlign: 'center', marginBottom: 0 }, ...style }}>
{children}
</Grid>
)
Property ‘style’ does not exist on type ‘CSSProperties’.ts(2339)
I have tried changing from CSSProperties to Element but I get the same error menssage. And HTMLCollectionOf as well..
What I’m doing wrong?