Skip to content

Instantly share code, notes, and snippets.

@danielnmai
Last active September 8, 2018 16:47
Show Gist options
  • Save danielnmai/437ca4f854e9872899476f520e18f772 to your computer and use it in GitHub Desktop.
Save danielnmai/437ca4f854e9872899476f520e18f772 to your computer and use it in GitHub Desktop.
a simple React component
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