summaryrefslogtreecommitdiff
path: root/elm3/StaffEdit/New.elm
blob: 64e5851730f1b53631e874d232cd046f1def04fe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
module StaffEdit.New exposing (main)

import Browser
import StaffEdit.Main as Main

main : Program () Main.Model Main.Msg
main = Browser.element
  { init   = always (Main.new, Cmd.none)
  , view   = Main.view
  , update = Main.update
  , subscriptions = always Sub.none
  }