wip adding account pages and add seeder package
This commit is contained in:
parent
3459bf26f8
commit
ec8a7b9228
10 changed files with 150 additions and 18 deletions
16
imports/ui/components/AccountPageFooter/AccountPageFooter.js
Normal file
16
imports/ui/components/AccountPageFooter/AccountPageFooter.js
Normal 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;
|
||||
|
|
@ -0,0 +1,7 @@
|
|||
@import '../../stylesheets/colors';
|
||||
|
||||
.AccountPageFooter {
|
||||
margin-top: 25px;
|
||||
padding-top: 20px;
|
||||
border-top: 1px solid $gray-lighter;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue