summaryrefslogtreecommitdiff
path: root/com/influencedbybooks/aero.hs
blob: 63066c55afe84ca43a56f36f91f77217a45682ed (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{-# LANGUAGE OverloadedStrings #-}
{-# LANGUAGE RecordWildCards #-}
{-# LANGUAGE NoImplicitPrelude #-}

-- | Front-end
module Com.Influencedbybooks.Aero where

import Com.Simatime.Alpha
import Com.Influencedbybooks.Move (move)
import Com.Influencedbybooks.Core (Action(..), see, init)
import Miso (App(..), defaultEvents, miso)

main :: IO ()
main = miso $ \u -> App { model = init u, .. }
  where
    initialAction = FetchPeople
    update = move
    view   = see
    events = defaultEvents
    subs   = []
    mountPoint = Nothing