From 2c8d0aa17101c30421c02a60efd4ba4b7d1a8d33 Mon Sep 17 00:00:00 2001 From: aqquq <jannik.wurche@student.uni-halle.de> Date: Wed, 3 Jul 2024 17:13:59 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=A4=AB=20only=20expose=20view=20function?= =?UTF-8?q?=20of=20each=20model?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/Pages/HomeView.elm | 2 +- src/Pages/NotFound.elm | 2 +- src/Pages/QuizView.elm | 2 +- src/Pages/ResultView.elm | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/Pages/HomeView.elm b/src/Pages/HomeView.elm index 54d062b..a4aa741 100644 --- a/src/Pages/HomeView.elm +++ b/src/Pages/HomeView.elm @@ -1,4 +1,4 @@ -module Pages.HomeView exposing (..) +module Pages.HomeView exposing (homeView) import Types exposing (Model, Msg(..)) import Html exposing (Html, div, p, text, form, input, button, h1) diff --git a/src/Pages/NotFound.elm b/src/Pages/NotFound.elm index e227d22..228c702 100644 --- a/src/Pages/NotFound.elm +++ b/src/Pages/NotFound.elm @@ -1,4 +1,4 @@ -module Pages.NotFound exposing (..) +module Pages.NotFound exposing (notFoundView) import Types exposing (Msg(..)) import Html exposing (Html, div, text, a, h1) diff --git a/src/Pages/QuizView.elm b/src/Pages/QuizView.elm index c9c27cd..e351b27 100644 --- a/src/Pages/QuizView.elm +++ b/src/Pages/QuizView.elm @@ -1,4 +1,4 @@ -module Pages.QuizView exposing (..) +module Pages.QuizView exposing (questionView) import Types exposing ( Msg(..), Quiz, Question, QuestionType(..)) import Html exposing (Html, div, text, h1, h2, h3, p, a, img, input, button) diff --git a/src/Pages/ResultView.elm b/src/Pages/ResultView.elm index 2db6e49..4c8c3a4 100644 --- a/src/Pages/ResultView.elm +++ b/src/Pages/ResultView.elm @@ -1,4 +1,4 @@ -module Pages.ResultView exposing (..) +module Pages.ResultView exposing (resultView) import Types exposing (Model, Msg(..), Question, QuestionType(..)) import Html exposing (Html, div, text, button, a, p, h1, table, tbody, tr, td) -- GitLab