aboutsummaryrefslogtreecommitdiff
path: root/client/src/view/notFound/NotFound.scala
diff options
context:
space:
mode:
Diffstat (limited to 'client/src/view/notFound/NotFound.scala')
-rw-r--r--client/src/view/notFound/NotFound.scala12
1 files changed, 12 insertions, 0 deletions
diff --git a/client/src/view/notFound/NotFound.scala b/client/src/view/notFound/NotFound.scala
new file mode 100644
index 0000000..a877640
--- /dev/null
+++ b/client/src/view/notFound/NotFound.scala
@@ -0,0 +1,12 @@
+package yoga.view.notFound
+
+import scala.xml.Node
+
+object NotFound {
+
+ def apply(): Node =
+ <div>
+ Page not found
+ </div>
+
+}