focus-components-v3
Version:
Focus web components to build applications (based on Material Design)
21 lines (18 loc) • 499 B
JSX
const Animation = FocusComponents.components.Animation;
const AnimationExample = React.createClass({
styleContainer: {
padding: '20px',
borderRadius: '10px',
backgroundColor: '#D6E2E4'
},
render() {
return(
<Animation>
<div style={this.styleContainer}>
<h3>{'Test Animation'}</h3>
</div>
</Animation>
);
}
});
module.exports = AnimationExample;