zepio/app/components/sidebar.mdx

27 lines
469 B
Plaintext
Raw Normal View History

2018-11-26 18:52:47 -08:00
---
name: Sidebar
---
import { Playground, PropsTable } from 'docz'
import { SidebarComponent } from './sidebar.js'
2018-11-28 17:54:08 -08:00
import { DoczWrapper } from '../theme.js'
2018-11-26 18:52:47 -08:00
# Sidebar
## General
Sidebar component does not behave correctly inside Docz Styleguide as it is tighly coupled with the router.
## Properties
2018-11-26 18:52:47 -08:00
<PropsTable of={SidebarComponent} />
## Basic Usage
2018-11-26 18:52:47 -08:00
<Playground>
2018-11-28 17:54:08 -08:00
<DoczWrapper>
{() => <SidebarComponent location={{}} />}
2018-11-28 17:54:08 -08:00
</DoczWrapper>
2018-11-26 18:52:47 -08:00
</Playground>