import * as React from 'react' import styled from 'styled-components' import { FlowChartWithState } from '../src' import { Content, Page, Sidebar, SidebarItem } from './components' import { chartSimple } from './misc/exampleChartState' const Message = styled.div` margin: 10px; padding: 10px; background: rgba(0,0,0,0.05); ` export const DragAndDropSidebar = () => ( Drag and drop these items onto the canvas. )