mirror of
https://github.com/fluencelabs/dashboard
synced 2025-04-24 15:22:14 +00:00
* TS replaced with js * Livereload works for ELM part * Fix layout issue with empty spaces * Using pure css spinners * Fixed services not being displayed in module page
16 lines
270 B
Elm
16 lines
270 B
Elm
module Msg exposing (..)
|
|
|
|
import Browser exposing (UrlRequest)
|
|
import Port
|
|
import Url
|
|
|
|
|
|
type Msg
|
|
= NoOp
|
|
| UrlChanged Url.Url
|
|
| LinkClicked UrlRequest
|
|
| AquamarineEvent Port.ReceiveEvent
|
|
| RelayChanged String
|
|
| ToggleInterface String
|
|
| Reload
|