Skip to content

Instantly share code, notes, and snippets.

@indreklasn
Last active November 7, 2017 21:37
Show Gist options
  • Save indreklasn/19f39aae661882990ada6295afe5cb4b to your computer and use it in GitHub Desktop.
Save indreklasn/19f39aae661882990ada6295afe5cb4b to your computer and use it in GitHub Desktop.
css-in-js example
// CSS-in-JS aphrodite example
import { StyleSheet, css } from 'aphrodite';
const styles = StyleSheet.create({
text: {
backgroundColor: 'black',
color: 'white',
},
});
<p className={css(styles.text)}>Hello CSS-in-JS</p>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment