10 lines
209 B
Vue
10 lines
209 B
Vue
<script setup lang="ts">
|
|
import InputFieldCard from '@/components/InputFieldCard.vue'
|
|
</script>
|
|
|
|
<template>
|
|
<main class="flex place-content-center p-4 h-[100%]">
|
|
<InputFieldCard/>
|
|
</main>
|
|
</template>
|