Split out footer container/presentation

This commit is contained in:
Matthew Taylor 2016-04-21 16:22:16 -04:00
parent f05cb39501
commit 017d58fb1b
2 changed files with 25 additions and 0 deletions

View file

@ -0,0 +1,16 @@
var React = require('react');
require('./footer.scss');
var FooterBox = React.createClass({
type: 'FooterBox',
render: function () {
return (
<div className="inner">
{this.props.children}
</div>
);
}
});
module.exports = FooterBox;

View file

@ -0,0 +1,9 @@
@import "../../../colors";
#footer {
display: block;
background-color: $ui-gray;
padding: 10px 0;
color: $type-gray;
font-size: .85rem;
}