mirror of
https://github.com/scratchfoundation/scratch-www.git
synced 2024-12-20 12:32:47 -05:00
53d3bb94dc
This reverts commit5ce1a9f411
, reversing changes made to5be4c45f08
.
16 lines
283 B
JavaScript
16 lines
283 B
JavaScript
const PropTypes = require('prop-types');
|
|
const React = require('react');
|
|
|
|
require('./footer.scss');
|
|
|
|
const FooterBox = props => (
|
|
<div className="inner">
|
|
{props.children}
|
|
</div>
|
|
);
|
|
|
|
FooterBox.propTypes = {
|
|
children: PropTypes.node
|
|
};
|
|
|
|
module.exports = FooterBox;
|