Created
June 9, 2016 02:09
-
-
Save amasad/33a270ef0a77b9e428485f2867f2f20c to your computer and use it in GitHub Desktop.
inline inline styles
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
class Test extends React.Component { | |
render() { | |
return <div style={Style.div}/>; | |
} | |
} | |
var Style = { | |
div: { | |
background: 'red' | |
} | |
}; |
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
class Test extends React.Component { | |
render() { | |
return <div style={{ background: 'red'}}/>; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment