UNPKG

colorify

Version:
26 lines (24 loc) 569 B
import React from 'react'; import { Row, Col } from 'react-bootstrap'; import SocialButtons from './SocialButtons'; module.exports = React.createClass({ render: function () { return ( <div> <Row> <Col md={12}><div className="color-stripe"></div></Col> </Row> <Row className="footer"> <Col md={6} className="copyright"> &copy; Copyright 2014 &nbsp; <a href="http://skratchdot.com">skratchdot.com</a> </Col> <Col md={6} className="social"> <SocialButtons /> </Col> </Row> <br /> </div> ); } });