Modularize code and added NavBar component

This commit is contained in:
Leon Liang
2019-09-27 19:34:42 -04:00
parent e961379e3f
commit 5caea0871e
5 changed files with 45 additions and 91 deletions

View File

@@ -1,3 +1,4 @@
/* eslint-disable */
import React, { Fragment } from 'react';
import NoImg from '../images/no-img.png';
import PropTypes from 'prop-types';
@@ -71,3 +72,6 @@ const PostSkeleton = (props) => {
PostSkeleton.propTypes = {
classes: PropTypes.object.isRequired
};
export default withStyles(styles)(PostSkeleton);