diff --git a/src/Pages/HomeView.elm b/src/Pages/HomeView.elm
index 54d062b7d2cfc308a2e8f19ec4b3db11cac196e7..a4aa741b8223f1aa965f7004649423284f1b6f61 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 e227d2253780b3e4d8eac7291589d67bc2a932e0..228c702988cb0d280e720d31255bc9c73e0b7cf4 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 c9c27cd14dc7c09dcde55c600a6eed50267db13a..e351b278a754413ebaf94eb53cbd1188977f9daf 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 2db6e49f9c2710876a476980c79529a32cce801a..4c8c3a434efae65c75de0151ad504df5c5fa6919 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)