TS17000

error TS17000: JSX attributes must only be assigned a non-empty ‘expression’.

Broken Code ❌

1
<Typography variant={}>Title</Typography>

Fixed Code ✔️

You can’t use an empty expression ({}) in JSX attributes:

1
<Typography variant={'h2'}>Title</Typography>