11 lines
247 B
Vue

<template>
<h1 class="text-white text-2xl w-full font-bold text-center my-24">Frankenstein Test</h1>
<div class="flex w-full justify-center">
<Serial />
</div>
</template>
<script setup>
import Serial from "./conf/Serial.vue"
</script>