Last active
June 27, 2024 15:56
-
-
Save object/ab5a93b07ee89b03616135b56e54c6cb to your computer and use it in GitHub Desktop.
Fable workshop (2024). Step 4. App.fs
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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