Renamed Sheet to Item

This commit is contained in:
Lucas Payr 2021-06-06 14:34:38 +02:00
parent e2ac8ff6d7
commit b4916a0072
2 changed files with 5 additions and 5 deletions

View File

@ -2,9 +2,9 @@ module Main exposing (main)
import Element import Element
import Page.Button import Page.Button
import Page.Item
import Page.PasswordInput import Page.PasswordInput
import Page.Select import Page.Select
import Page.Sheet
import Page.Snackbar import Page.Snackbar
import Page.SortTable import Page.SortTable
import Page.Switch import Page.Switch
@ -22,7 +22,7 @@ pages =
|> UIExplorer.nextPage "Text Input" Page.TextInput.page |> UIExplorer.nextPage "Text Input" Page.TextInput.page
|> UIExplorer.nextPage "Sort Table" Page.SortTable.page |> UIExplorer.nextPage "Sort Table" Page.SortTable.page
|> UIExplorer.nextPage "Snackbar" Page.Snackbar.page |> UIExplorer.nextPage "Snackbar" Page.Snackbar.page
|> UIExplorer.nextPage "Sheet" Page.Sheet.page |> UIExplorer.nextPage "Item" Page.Item.page
main = main =

View File

@ -1,4 +1,4 @@
module Page.Sheet exposing (page) module Page.Item exposing (page)
{-| This is an example Page. If you want to add your own pages, simple copy and modify this one. {-| This is an example Page. If you want to add your own pages, simple copy and modify this one.
-} -}
@ -23,14 +23,14 @@ import Widget.Material.Typography as Typography
-} -}
title : String title : String
title = title =
"Sheet" "Item"
{-| The description. I've taken this description directly from the [Material-UI-Specification](https://material.io/components/buttons) {-| The description. I've taken this description directly from the [Material-UI-Specification](https://material.io/components/buttons)
-} -}
description : String description : String
description = description =
"Sheets are surfaces containing supplementary content." "Items can be composed into lists."
{-| List of view functions. Essentially, anything that takes a Button as input. {-| List of view functions. Essentially, anything that takes a Button as input.