module Riichi exposing (..) import Html exposing (..) type alias Model = {} type Msg = Noop init : ( Model, Cmd Msg ) init = ( {}, Cmd.none ) update : Msg -> Model -> ( Model, Cmd Msg ) update msg model = ( model, Cmd.none ) main : Program Never Model Msg main = program { init = init , update = update , view = view , subscriptions = \_ -> Sub.none } view : Model -> Html Msg view model = div [] [ h1 [] [ text "Riichi Mahjong" ] ]