blob: b5f256616f8cbd2991f450b0fb021e88393dbd1f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
module LoggedIn.Home.Msg exposing
( Msg(..)
)
import Form exposing (Form)
import Model.Payment exposing (PaymentId)
type Msg =
NoOp
| UpdatePage Int
| SearchMsg Form.Msg
|