Last active
September 8, 2018 16:47
-
-
Save danielnmai/437ca4f854e9872899476f520e18f772 to your computer and use it in GitHub Desktop.
a simple React component
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React from 'react' | |
import s from './styles/footer.css' | |
import withStyles from 'isomorphic-style-loader/lib/withStyles' | |
const Footer = (props) => { | |
return ( | |
<div className='footer'> | |
<p>Copyright @ DANIEL MAI - 2018 All Rights Reserved. </p> | |
</div> | |
) | |
} | |
export default withStyles(s)(Footer) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment