Constant project_init::includes::ELM_VIEW [] [src]

pub const ELM_VIEW: &'static str = "module View exposing (view)\n\nimport Html exposing (..)\nimport State exposing (..)\n\nview : Model -> Html Model\nview model =\n    div []\n        [ div [] [ text model.message ]\n        ]\n"