import * as React from 'react'; import Sidebar, { SidebarStyles } from 'react-sidebar'; const sidebar = ; const sidebarStyle: SidebarStyles = { content: { width: "300px" } }; const sidebar1 = ( { }} rootId="test-root-id" sidebarId="test-sidebar-id" contentId="test-content-id" overlayId="test-overlay-id" >

Content

); // Test id properties are optional const sidebar2 = ( { }} >

Content

);