openflexure-microscope-server/webapp/src/components/tabContentComponents/viewContent.vue
2026-02-15 17:11:55 +00:00

20 lines
380 B
Vue

<template>
<!-- Grid managing tab content -->
<div uk-grid class="uk-height-1-1 uk-margin-remove uk-padding-remove">
<div class="view-component uk-width-expand">
<streamDisplay />
</div>
</div>
</template>
<script>
import streamDisplay from "./streamContent.vue";
export default {
name: "ViewContent",
components: {
streamDisplay,
},
};
</script>