1
0
mirror of https://github.com/jhillyerd/inbucket.git synced 2026-01-09 04:31:55 +00:00

ui: Linter import fixes for Page directory

This commit is contained in:
James Hillyerd
2020-03-29 11:28:47 -07:00
parent 2b857245f7
commit 1a45179e31
4 changed files with 60 additions and 16 deletions

View File

@@ -3,8 +3,25 @@ module Page.Monitor exposing (Model, Msg, init, update, view)
import Data.MessageHeader as MessageHeader exposing (MessageHeader)
import Data.Session as Session exposing (Session)
import DateFormat as DF
import Html exposing (..)
import Html.Attributes exposing (..)
import Html
exposing
( Attribute
, Html
, button
, div
, em
, h1
, node
, span
, table
, tbody
, td
, text
, th
, thead
, tr
)
import Html.Attributes exposing (class, tabindex)
import Html.Events as Events
import Json.Decode as D
import Route