summaryrefslogtreecommitdiff
path: root/src/main/kotlin/moe/nea89/website/App.kt
diff options
context:
space:
mode:
authornea <romangraef@loves.dicksinhisan.us>2021-12-07 05:28:25 +0100
committernea <romangraef@loves.dicksinhisan.us>2021-12-07 19:08:02 +0100
commit5843b02bad28bc82567c195ca0bb31515e3dbb36 (patch)
tree673f842605f37be928a36811ddd67ed8948afdab /src/main/kotlin/moe/nea89/website/App.kt
parent6b44e60fc4efc23a30f16492bf9dc17aa30b66c5 (diff)
downloadneamoe-5843b02bad28bc82567c195ca0bb31515e3dbb36.tar.gz
neamoe-5843b02bad28bc82567c195ca0bb31515e3dbb36.tar.bz2
neamoe-5843b02bad28bc82567c195ca0bb31515e3dbb36.zip
uwu
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" }
- }
- }
-}