blob: 3121aa54b4c5d9b145cff2d307e4da0178e956d5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
module Main where
import Prelude
import Control.Monad.Eff (Eff)
import Halogen.Aff as HA
import Halogen.VDom.Driver (runUI)
import Page as Page
main :: Eff (HA.HalogenEffects ()) Unit
main = HA.runHalogenAff do
body <- HA.awaitBody
runUI Page.component unit body
|