blob: 51837bbbd40a61c4af3e03152bc2f83cfb7d962c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
module View.WeaponSelection exposing (get_html)
-- Elm -------------------------------------------------------------------------
import Html
import Html.Attributes
-- Roster Editor ---------------------------------------------------------------
import Struct.Event
import Struct.Model
--------------------------------------------------------------------------------
-- LOCAL -----------------------------------------------------------------------
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
-- EXPORTED --------------------------------------------------------------------
--------------------------------------------------------------------------------
get_html : Struct.Model.Type -> (Html.Html Struct.Event.Type)
get_html model =
(Html.div
[(Html.Attributes.class "roster-editor-weapon-selection")]
[
(Html.text "Weapon Selection")
]
)
|