config.vue 463 Bytes
<script setup lang="ts">
import { PublicForm } from '@/core/Library/components/PublicForm'
import type { ConfigComponentProps } from '@/core/Library/types'

const props = defineProps<ConfigComponentProps>()
</script>

<template>
  <main class="w-full h-full flex flex-col">
    <PublicForm v-bind="props" />
  </main>
</template>

<style lang="less" scoped>
.form-container {
    @apply text-sm;
    :deep(.ant-divider) {
      @apply text-sm;
    }
  }
</style>