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 styled from "styled-components"
import ButtonInput from "./ButtonInput"
import ButtonLink from "./ButtonLink"

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

let BG = styled.div`
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
`

export const buttonLink = () => (
  <BG>
    <ButtonLink href="http://cloud.tilt.dev">View Tilt Cloud</ButtonLink>
  </BG>
)

export const buttonInput = () => (
  <BG>
    <ButtonInput type="submit" value="Sign Up via GitHub" />
  </BG>
)