Merge branch 'frontend/creating-a-sidebar' of https://git.mixel.cloud/Turbo/peer-group-grading into frontend/creating-a-sidebar
Some checks failed
ci/woodpecker/pr/cargo_check Pipeline was successful
ci/woodpecker/pr/cargo_clippy Pipeline was successful
ci/woodpecker/pr/cargo_test Pipeline was successful
ci/woodpecker/pr/check_fmt Pipeline failed

This commit is contained in:
Jan Hoegerle 2025-04-09 10:44:01 +02:00
commit 6be6f88efe

View file

@ -2,7 +2,7 @@
import { ref } from 'vue' import { ref } from 'vue'
import HeaderNav from './components/HeaderNav.vue' import HeaderNav from './components/HeaderNav.vue'
import SideBar from './components/SideBar.vue' import SideBar from './components/SideBar.vue'
import { BoltIcon } from 'lucide-vue-next' import { RouterLink, RouterView } from 'vue-router'
const isTeacher = ref(true) const isTeacher = ref(true)
const isLoggedIn = ref(true) const isLoggedIn = ref(true)
@ -24,3 +24,5 @@ const isLoggedIn = ref(true)
<RouterView /> <RouterView />
</div> </div>
</template> </template>
<style scoped></style>