HabitatMap/AirCasting

View on GitHub
app/javascript/elm/src/Data/Page.elm

Summary

Maintainability
Test Coverage
module Data.Page exposing (Page(..), toString)


type Page
    = Fixed
    | Mobile


toString : Page -> String
toString page =
    case page of
        Fixed ->
            "Fixed"

        Mobile ->
            "Mobile"