Skip to content

Instantly share code, notes, and snippets.

@object
Last active June 27, 2024 15:56
Show Gist options
  • Save object/ab5a93b07ee89b03616135b56e54c6cb to your computer and use it in GitHub Desktop.
Save object/ab5a93b07ee89b03616135b56e54c6cb to your computer and use it in GitHub Desktop.
Fable workshop (2024). Step 4. App.fs
module App
open Elmish
open Elmish.React
#if DEBUG
open Elmish.Debug
open Elmish.HMR
#endif
open Update
open View
Program.mkProgram init update view
#if DEBUG
|> Program.withConsoleTrace
#endif
|> Program.withReactSynchronous "elmish-app"
#if DEBUG
|> Program.withDebugger
#endif
|> Program.run
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment