UNPKG

apeman-react-style

Version:
25 lines (22 loc) 461 B
'use strict' import React from 'react' import {ApStyle} from 'apeman-react-style' const ExampleComponent = React.createClass({ render () { let style01 = { 'my-component-01 button': { backgroundColor: '#FFF', color: '#555' } } let style02 = { 'my-component-02 button': { /* ... */ } } return ( <div> <ApStyle data={ style01 }/> <ApStyle data={ style02 }/> </div> ) } })