Skip to content

Instantly share code, notes, and snippets.

View landy's full-sized avatar

Jiří Landsman landy

  • CN Group
  • Prague
View GitHub Profile
@landy
landy / App.fs
Created July 21, 2020 18:18 — forked from aspnetde/App.fs
Feliz – MVU with React Function Components
module App
open Elmish
type State =
{ CurrentUser: string option }
type Msg =
| SignIn of string
| SignOut