Add basic layout of the contact review

This commit is contained in:
Eli Ribble 2026-05-15 17:19:06 +00:00
parent d020a33642
commit 8b203908a0
No known key found for this signature in database
5 changed files with 34 additions and 0 deletions

View file

@ -0,0 +1,19 @@
<template>
<ThreeColumn>
<template #left>
<ReviewContactColumnList />
</template>
<template #center>
<ReviewContactColumnDetail />
</template>
<template #right>
<ReviewContactColumnAction />
</template>
</ThreeColumn>
</template>
<script setup lang="ts">
import ThreeColumn from "@/components/layout/ThreeColumn.vue";
import ReviewContactColumnAction from "@/components/ReviewContactColumnAction.vue";
import ReviewContactColumnDetail from "@/components/ReviewContactColumnDetail.vue";
import ReviewContactColumnList from "@/components/ReviewContactColumnList.vue";
</script>