Created
January 11, 2018 22:45
-
-
Save wongni/3fc83bd3cc5a29551226951813e8639b to your computer and use it in GitHub Desktop.
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 styles from './ComponentName.scss' | |
import classNames from 'classnames/bind' | |
const cx = classNames.bind(styles) | |
const ComponentName = () => { | |
return ( | |
<div className={cx('Component-name')}> | |
</div> | |
) | |
} | |
export default ComponentName |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment