Last active
May 15, 2017 19:32
-
-
Save gigobyte/f25c4cff1ace27336594367eae7e9a3e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@styleable | |
class Example extends React.Component { | |
render() { | |
return ( | |
<div className="test" style={{fontSize: 30}}> | |
Test | |
</div> | |
) | |
} | |
} | |
ReactDOM.render( | |
<Example className="test2" style={{color: 'red'}} />, app | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment