Skip to content

Instantly share code, notes, and snippets.

@wongni
Created January 11, 2018 22:45
Show Gist options
  • Save wongni/3fc83bd3cc5a29551226951813e8639b to your computer and use it in GitHub Desktop.
Save wongni/3fc83bd3cc5a29551226951813e8639b to your computer and use it in GitHub Desktop.
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