mirror of
https://github.com/Kong/insomnia
synced 2024-11-08 06:39:48 +00:00
Better imports
This commit is contained in:
parent
135de92b80
commit
bc0d436542
@ -1,8 +1,8 @@
|
|||||||
port module UrlBar exposing (..)
|
port module UrlBar exposing (main)
|
||||||
|
|
||||||
import Html exposing (..)
|
import Html exposing (Html, input, div, button, text, form)
|
||||||
import Html.Attributes exposing (..)
|
import Html.Attributes exposing (class, type', value, placeholder)
|
||||||
import Html.Events exposing (..)
|
import Html.Events exposing (onInput, onSubmit)
|
||||||
import Html.App as App
|
import Html.App as App
|
||||||
import Base.Dropdown as Dropdown
|
import Base.Dropdown as Dropdown
|
||||||
|
|
||||||
@ -153,7 +153,7 @@ view model =
|
|||||||
in
|
in
|
||||||
div [ class "urlbar" ]
|
div [ class "urlbar" ]
|
||||||
[ App.map DropdownMessage <| Dropdown.view model.dropdown
|
[ App.map DropdownMessage <| Dropdown.view model.dropdown
|
||||||
, Html.form [ onSubmit SendRequest ]
|
, form [ onSubmit SendRequest ]
|
||||||
[ div [ class "form-control" ]
|
[ div [ class "form-control" ]
|
||||||
[ input
|
[ input
|
||||||
[ type' "text"
|
[ type' "text"
|
||||||
|
Loading…
Reference in New Issue
Block a user