Skip to content

Instantly share code, notes, and snippets.

@m4dz
Created December 20, 2016 10:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save m4dz/f50ffa5b2ba9a826facb456530e5c2c9 to your computer and use it in GitHub Desktop.
Save m4dz/f50ffa5b2ba9a826facb456530e5c2c9 to your computer and use it in GitHub Desktop.
import styles from '../styles/sidebar'
import { h } from 'preact'
import classNames from 'classnames'
import Nav from './nav'
const Sidebar = () => (
<aside class={ classNames(styles['fil-sidebar'], 'active') }>
<Nav />
</aside>
)
export default Sidebar
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment