mirror of
https://github.com/jhillyerd/inbucket.git
synced 2025-12-17 17:47:03 +00:00
ui: Import fixes for src directory
This commit is contained in:
@@ -1,7 +1,6 @@
|
|||||||
module HttpUtil exposing (Error, RequestContext, delete, errorFlash, expectJson, expectString, patch)
|
module HttpUtil exposing (Error, RequestContext, delete, errorFlash, expectJson, expectString, patch)
|
||||||
|
|
||||||
import Data.Session as Session
|
import Data.Session as Session
|
||||||
import Html exposing (Html, div, text)
|
|
||||||
import Http
|
import Http
|
||||||
import Json.Decode as Decode
|
import Json.Decode as Decode
|
||||||
|
|
||||||
|
|||||||
@@ -1,17 +1,37 @@
|
|||||||
module Layout exposing (Model, Msg, Page(..), frame, init, reset, update)
|
module Layout exposing (Model, Msg, Page(..), frame, init, reset, update)
|
||||||
|
|
||||||
import Data.Session as Session exposing (Session)
|
import Data.Session as Session exposing (Session)
|
||||||
import Html exposing (..)
|
import Html
|
||||||
|
exposing
|
||||||
|
( Attribute
|
||||||
|
, Html
|
||||||
|
, a
|
||||||
|
, button
|
||||||
|
, div
|
||||||
|
, footer
|
||||||
|
, form
|
||||||
|
, h2
|
||||||
|
, header
|
||||||
|
, i
|
||||||
|
, input
|
||||||
|
, li
|
||||||
|
, nav
|
||||||
|
, pre
|
||||||
|
, span
|
||||||
|
, td
|
||||||
|
, text
|
||||||
|
, th
|
||||||
|
, tr
|
||||||
|
, ul
|
||||||
|
)
|
||||||
import Html.Attributes
|
import Html.Attributes
|
||||||
exposing
|
exposing
|
||||||
( attribute
|
( attribute
|
||||||
, class
|
, class
|
||||||
, classList
|
, classList
|
||||||
, href
|
, href
|
||||||
, id
|
|
||||||
, placeholder
|
, placeholder
|
||||||
, rel
|
, rel
|
||||||
, selected
|
|
||||||
, target
|
, target
|
||||||
, type_
|
, type_
|
||||||
, value
|
, value
|
||||||
|
|||||||
@@ -4,7 +4,7 @@ import Browser exposing (Document, UrlRequest)
|
|||||||
import Browser.Navigation as Nav
|
import Browser.Navigation as Nav
|
||||||
import Data.AppConfig as AppConfig exposing (AppConfig)
|
import Data.AppConfig as AppConfig exposing (AppConfig)
|
||||||
import Data.Session as Session exposing (Session)
|
import Data.Session as Session exposing (Session)
|
||||||
import Html exposing (..)
|
import Html exposing (Html)
|
||||||
import Json.Decode as D exposing (Value)
|
import Json.Decode as D exposing (Value)
|
||||||
import Layout
|
import Layout
|
||||||
import Page.Home as Home
|
import Page.Home as Home
|
||||||
|
|||||||
Reference in New Issue
Block a user