wip adding account pages and add seeder package

This commit is contained in:
cleverbeagle 2017-05-26 23:54:07 -05:00
parent 3459bf26f8
commit ec8a7b9228
10 changed files with 150 additions and 18 deletions

View file

@ -0,0 +1,16 @@
import React from 'react';
import PropTypes from 'prop-types';
import './AccountPageFooter.scss';
const AccountPageFooter = ({ children }) => (
<div className="AccountPageFooter">
{children}
</div>
);
AccountPageFooter.propTypes = {
children: PropTypes.node.isRequired,
};
export default AccountPageFooter;

View file

@ -0,0 +1,7 @@
@import '../../stylesheets/colors';
.AccountPageFooter {
margin-top: 25px;
padding-top: 20px;
border-top: 1px solid $gray-lighter;
}