aboutsummaryrefslogtreecommitdiff
path: root/src/client/View/Page.elm
blob: 47e0c1c05610070bc6fd06ebba7535776c65ceb2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
module View.Page
  ( renderPage
  ) where

import Html exposing (..)
import Html as H
import Html.Attributes exposing (..)
import Html.Attributes as A
import Html.Events exposing (..)

renderPage : Html
renderPage =
  header
    []
    [ h1
        []
        [ text "Payments" ]
    ]