import Html exposing (Html, Attribute, div, input, text)
import Html.Attributes exposing (..)
import Html.Events exposing (onInput)
Browser.sandbox { init = init, update = update, view = view }
update : Msg -> Model -> Model
{ model | content = newContent }