···11+# Sidebar
22+33+## Example
44+55+For an example see the Sidebar at the side of this page.
66+77+## Usage
88+99+```svelte
1010+<script>
1111+ import { Sidebar } from '@fuxui/base';
1212+</script>
1313+1414+<Sidebar>
1515+ <div>
1616+ <div>Home</div>
1717+ <div>Settings</div>
1818+ <div>Profile</div>
1919+ </div>
2020+</Sidebar>
2121+2222+<!-- to show mobile version add a popovertarget to a button -->
2323+<Button class="block lg:hidden" popovertarget="mobile-menu">
2424+ Menu
2525+</Button>
2626+```