2025-07-10 20:47:40 +09:00

18 lines
340 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"