summaryrefslogtreecommitdiff
path: root/src/main/kotlin/moe/nea89/website/App.kt
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/kotlin/moe/nea89/website/App.kt')
-rw-r--r--src/main/kotlin/moe/nea89/website/App.kt26
1 files changed, 0 insertions, 26 deletions
diff --git a/src/main/kotlin/moe/nea89/website/App.kt b/src/main/kotlin/moe/nea89/website/App.kt
deleted file mode 100644
index aa96825..0000000
--- a/src/main/kotlin/moe/nea89/website/App.kt
+++ /dev/null
@@ -1,26 +0,0 @@
-package moe.nea89.website
-
-import com.bnorm.react.RFunction
-import react.RBuilder
-import react.dom.li
-import react.dom.nav
-import react.dom.ul
-
-
-@RFunction
-fun RBuilder.App() {
- Navigation()
-}
-
-@RFunction
-fun RBuilder.Navigation() {
- nav {
- ul {
- li { +"Hehe" }
- li { +"Hihi" }
- li { +"Hoho" }
- li { +"Haha" }
- li { +"Huhu" }
- }
- }
-}