feat: BuilderSections component

This commit is contained in:
2026-01-13 21:36:26 -05:00
parent 688c4e36b3
commit 2b9a87511b
2 changed files with 17 additions and 2 deletions

View File

@@ -0,0 +1,9 @@
<script setup lang="ts">
import type { SectionTextBlockFragment } from "#graphql/typed-documents";
defineProps<SectionTextBlockFragment>();
</script>
<template>
<div v-html="content" />
</template>