colorify
Version:
a collection of color tools
26 lines (24 loc) • 569 B
JavaScript
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">
© Copyright 2014
<a href="http://skratchdot.com">skratchdot.com</a>
</Col>
<Col md={6} className="social">
<SocialButtons />
</Col>
</Row>
<br />
</div>
);
}
});