From 1ded1ccab436b5322675e9340699ced4de3696ba Mon Sep 17 00:00:00 2001 From: Dillon Kearns Date: Sat, 3 Apr 2021 21:21:33 -0700 Subject: [PATCH] Add type alias. --- examples/docs/src/Template/Page.elm | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/examples/docs/src/Template/Page.elm b/examples/docs/src/Template/Page.elm index 92cc30eb..2881f6de 100644 --- a/examples/docs/src/Template/Page.elm +++ b/examples/docs/src/Template/Page.elm @@ -19,7 +19,11 @@ type alias Msg = Never -template : Template {} () +type alias Route = + {} + + +template : Template Route StaticData template = Template.noStaticData { head = head } |> Template.buildNoState { view = view }