aboutsummaryrefslogtreecommitdiff
path: root/src/client/elm/LoggedIn/User/View.elm
blob: 35ea940c1e3097c6942c7bdc158b87d4e4b42e68 (plain)
1
2
3
4
5
6
7
8
9
10
11
module LoggedIn.User.View
  ( view
  ) where

import Html exposing (..)

view : LoggedData -> Html
view loggedData =
  div
    []
    [ text "Hey" ]