Skip to content

Instantly share code, notes, and snippets.

@amasad
Created June 9, 2016 02:09
Show Gist options
  • Save amasad/33a270ef0a77b9e428485f2867f2f20c to your computer and use it in GitHub Desktop.
Save amasad/33a270ef0a77b9e428485f2867f2f20c to your computer and use it in GitHub Desktop.
inline inline styles
class Test extends React.Component {
render() {
return <div style={Style.div}/>;
}
}
var Style = {
div: {
background: 'red'
}
};
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