mirror of
https://github.com/NoRedInk/noredink-ui.git
synced 2024-12-18 19:21:29 +03:00
40 lines
681 B
Elm
40 lines
681 B
Elm
module Examples.BreadCrumbs exposing (example, State, Msg)
|
|
|
|
{-|
|
|
|
|
@docs example, State, Msg
|
|
|
|
-}
|
|
|
|
import Category exposing (Category(..))
|
|
import Example exposing (Example)
|
|
import Nri.Ui.Text.V6 as Text
|
|
|
|
|
|
{-| -}
|
|
type alias State =
|
|
{}
|
|
|
|
|
|
{-| -}
|
|
type alias Msg =
|
|
()
|
|
|
|
|
|
{-| -}
|
|
example : Example State Msg
|
|
example =
|
|
{ name = "BreadCrumbs"
|
|
, version = 1
|
|
, categories = [ Layout ]
|
|
, keyboardSupport = []
|
|
, state = {}
|
|
, update = \_ m -> ( m, Cmd.none )
|
|
, subscriptions = \_ -> Sub.none
|
|
, preview = []
|
|
, view =
|
|
\ellieLinkConfig settings ->
|
|
[ Text.mediumBody [ Text.plaintext "🚧 Example coming soon! 🚧" ]
|
|
]
|
|
}
|