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 Tooltip from "./Tooltip"

export default {
  title: "New UI/_To Review/Tooltip",
}

export const Default = () => (
  <div
    style={{
      display: "flex",
      width: "500px",
      height: "500px",
      alignItems: "center",
      justifyContent: "center",
    }}
  >
    <Tooltip title="icon explanation" open={true}>
      <span>Hello world</span>
    </Tooltip>
  </div>
)