22 lines
393 B
Vue
22 lines
393 B
Vue
<template>
|
|
<div class="container-medium">
|
|
<div class="lg:mt-12">
|
|
<FeedbackForm :page="content" />
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import FeedbackForm from "@/components/FeedbackForm.vue";
|
|
import type { LearningContent } from "@/types";
|
|
|
|
interface Value {
|
|
description: string;
|
|
}
|
|
|
|
defineProps<{
|
|
value: Value;
|
|
content: LearningContent;
|
|
}>();
|
|
</script>
|