Skip to content

Instantly share code, notes, and snippets.

@wongni
Created January 12, 2018 04:04
Show Gist options
  • Save wongni/50e1bdd3629aa7f4094826f3aa740bb5 to your computer and use it in GitHub Desktop.
Save wongni/50e1bdd3629aa7f4094826f3aa740bb5 to your computer and use it in GitHub Desktop.
import React from 'react'
import styles from './Viewer.scss'
import classNames from 'classnames/bind'
const cx = classNames.bind(styles)
const Viewer = ({ mediaType, url, loading }) => {
return (
<div className={cx('viewer')}>
</div>
)
}
export default Viewer
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment