Skip to content
Snippets Groups Projects
Commit 2c8d0aa1 authored by Jannik Wurche's avatar Jannik Wurche
Browse files

:shushing_face: only expose view function of each model

parent e714d5be
Branches
No related tags found
No related merge requests found
module Pages.HomeView exposing (..) module Pages.HomeView exposing (homeView)
import Types exposing (Model, Msg(..)) import Types exposing (Model, Msg(..))
import Html exposing (Html, div, p, text, form, input, button, h1) import Html exposing (Html, div, p, text, form, input, button, h1)
......
module Pages.NotFound exposing (..) module Pages.NotFound exposing (notFoundView)
import Types exposing (Msg(..)) import Types exposing (Msg(..))
import Html exposing (Html, div, text, a, h1) import Html exposing (Html, div, text, a, h1)
......
module Pages.QuizView exposing (..) module Pages.QuizView exposing (questionView)
import Types exposing ( Msg(..), Quiz, Question, QuestionType(..)) import Types exposing ( Msg(..), Quiz, Question, QuestionType(..))
import Html exposing (Html, div, text, h1, h2, h3, p, a, img, input, button) import Html exposing (Html, div, text, h1, h2, h3, p, a, img, input, button)
......
module Pages.ResultView exposing (..) module Pages.ResultView exposing (resultView)
import Types exposing (Model, Msg(..), Question, QuestionType(..)) import Types exposing (Model, Msg(..), Question, QuestionType(..))
import Html exposing (Html, div, text, button, a, p, h1, table, tbody, tr, td) import Html exposing (Html, div, text, button, a, p, h1, table, tbody, tr, td)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment