Skip to content

dtwrks/elm-book-interop-elm-ui

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Use the book function and Book type when creating a new book and the custom Chapter type when creating a new chapter. Everything else should work the same as expected.

module MyBook exposing (main)


import Element exposing (el, text)
import ElmBook exposing (withChapters)
import ElmBook.ElmUI exposing (Book, book, Chapter)
import ElmBook.Chapter exposing (chapter, renderComponent)


firstChapter : Chapter x
firstChapter =
    chapter "First Chapter"
        |> renderComponent
            (el [] <| text "Hello")


main : Book ()
main =
    book "ElmBook with Elm-UI"
        |> withChapters
            [ firstChapter
            ]

Packages

 
 
 

Contributors

Languages