Skip to content

Instantly share code, notes, and snippets.

@indreklasn
Created November 9, 2017 21:47
Show Gist options
  • Save indreklasn/14b38638841f6c0539127ad52358d099 to your computer and use it in GitHub Desktop.
Save indreklasn/14b38638841f6c0539127ad52358d099 to your computer and use it in GitHub Desktop.
Radium
import React, { Component } from 'react';
import Radium from 'radium';
@Radium // decorator
class App extends Component {
render() {
const styles = {
wrapper: {
background: 'blue',
}
title: {
color: 'white'
}
};
return (
<div style={styles.wrapper}>
<h1 style={styles.title}>Hello Radium!</h1>
</div>
);
}
}
export default Radium(App);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment