Files
Pascal Martineau 1f81cb4ad8
All checks were successful
Deploy WordPress and Nuxt / deploy (push) Successful in 57s
refactor: SectionWrapper
2025-09-24 15:38:45 -04:00

14 lines
266 B
Vue

<script setup lang="ts">
import type { SectionWrapperFragment } from "#graphql-operations";
defineProps<SectionWrapperFragment>();
</script>
<template>
<section :class="bgColor">
<div :class="contentWidth">
<slot />
</div>
</section>
</template>