Skip to content

Instantly share code, notes, and snippets.

@AvgustPol
Created November 14, 2019 15:36
Show Gist options
  • Save AvgustPol/1386394b017454abe21b3547854c0fcd to your computer and use it in GitHub Desktop.
Save AvgustPol/1386394b017454abe21b3547854c0fcd to your computer and use it in GitHub Desktop.
[ React ] Anonymous style object in typescript
<div style={{ cursor: 'pointer', fontSize: '1rem' }}>
<p> You are awesome ! </p>
</div>
@AvgustPol
Copy link
Author

It is the same as:

var namedStyle = {
    cursor: 'pointer', 
    fontSize: '1rem' 
}

<div style={namedStyle}>
    <p> You are awesome ! </p>
</div>

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment