This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
For support of the Arnold iOS lifting app, please comment below. | |
We will not share any user data. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- Important parts of file upload through a HTTP Post form in Elm | |
-- This example reflects an application like a Facebook Post Feed | |
-- Each post has a comment form at the bottom of the post | |
-- A comment can be text or attaching a photo | |
module TopicView exposing (..) | |
import Html exposing (..) | |
import Html.Attributes exposing (..) | |
import Html.Events exposing (..) |