9 lines
212 B
Vue
9 lines
212 B
Vue
<script setup lang="ts">
|
|
// This component contains a list with all themes and will be shown on a student's and teacher's homepage.
|
|
</script>
|
|
|
|
<template>
|
|
<main></main>
|
|
</template>
|
|
|
|
<style scoped></style>
|