blob: 432477aa3bb9a37a80bf008777405c0dac7e01db (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
module Overview exposing (render)
import Html exposing (..)
import Html.Attributes exposing (..)
import Html.Events exposing (..)
import State
render : State.Model -> Html State.Msg
render model =
div [] [ text "Hello, Overview" ]
|