mirror of
https://github.com/beak-insights/felicity-lims.git
synced 2025-02-24 17:02:55 +08:00
11 lines
270 B
Vue
11 lines
270 B
Vue
<script setup lang="ts">
|
|
import PageHeading from "../components/PageHeading.vue";
|
|
import tabSamples from "../components/SampleListing.vue";
|
|
</script>
|
|
|
|
<template>
|
|
<page-heading title="Samples" />
|
|
<tab-samples />
|
|
</template>
|
|
|
|
<style lang="postcss"></style>
|