reminder to add support for nested things

This commit is contained in:
Ryan Haskell-Glatz 2019-10-16 18:41:40 -05:00
parent 377f81c79f
commit 6ddddf3187
4 changed files with 54 additions and 0 deletions

View File

@ -0,0 +1,27 @@
module Pages.Settings exposing (Model, Msg)
import Pages.Settings.Account as Account
import Pages.Settings.Notifications as Notifications
import Pages.Settings.User as User
-- TODO : Export Application.layout or something for scaling this trash
type Route
= Account
| Notifications
| User
type Model
= AccountModel Account.Model
| NotificationsModel Notifications.Model
| UserModel User.Model
type Msg
= AccountMsg Account.Msg
| NotificationsMsg Notifications.Msg
| UserMsg User.Msg

View File

@ -0,0 +1,9 @@
module Pages.Settings.Account exposing (Model, Msg)
type Model
= Model
type Msg
= Msg

View File

@ -0,0 +1,9 @@
module Pages.Settings.Notifications exposing (Model, Msg)
type Model
= Model
type Msg
= Msg

View File

@ -0,0 +1,9 @@
module Pages.Settings.User exposing (Model, Msg)
type Model
= Model
type Msg
= Msg