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

type location = {
  location: {
    pathname: string
  }
}
let NotFound = ({ location }: location) => {
  return (
    <HeroScreen>
      <div>
        No resource found at <code>{location.pathname}</code>
      </div>
    </HeroScreen>
  )
}

export default NotFound