focus-components-v3
Version:
Focus web components to build applications (based on Material Design)
22 lines (19 loc) • 847 B
JSX
const {ButtonBackToTop} = FocusComponents.components;
const ButtonExample = React.createClass({
render() {
return (
<div className='button-bt-example'>
<img src="http://lorempixel.com/800/600/sports/"/>
<img src="http://lorempixel.com/800/600/abstract/"/>
<img src="http://lorempixel.com/800/600/city/"/>
<img src="http://lorempixel.com/800/600/technics/"/>
<img src="http://lorempixel.com/800/600/sports/"/>
<img src="http://lorempixel.com/800/600/abstract/"/>
<img src="http://lorempixel.com/800/600/city/"/>
<img src="http://lorempixel.com/800/600/technics/"/>
<ButtonBackToTop />
</div>
);
}
});
module.exports = ButtonExample;