2025-07-08 21:22:14 +09:00

18 lines
339 B
Forth

namespace web_api_cookbook
open WebSharper
open WebSharper.JavaScript
open WebSharper.UI
open WebSharper.UI.Client
open WebSharper.UI.Html
open WebSharper.UI.Templating
[<JavaScript>]
module Client =
[<SPAEntryPoint>]
let Main () =
div [] [
p [] [ text "hello world" ]
]
|> Doc.RunById "main"