starling-devex 0.1.2

Starling: a local dev orchestrator with a central daemon, shared named-URL proxy, and a k9s-style TUI (a Rust port of Tilt + portless)
import React from "react"
import { MemoryRouter } from "react-router"
import HelpDialog from "./HelpDialog"

function onRequestClose() {
  console.log("onRequestClose")
}

export default {
  title: "New UI/Shared/HelpDialog",
  decorators: [
    (Story: any) => (
      <MemoryRouter initialEntries={["/"]}>
        <Story />
      </MemoryRouter>
    ),
  ],
}

export const DialogOverview = () => (
  <HelpDialog open={true} onClose={onRequestClose} anchorEl={document.body} />
)