Added stream view tab

This commit is contained in:
Joel Collins 2020-04-30 15:01:16 +01:00
parent bead058b6d
commit ba280c6284
2 changed files with 38 additions and 0 deletions

View file

@ -0,0 +1,20 @@
<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 "../viewComponents/streamDisplay.vue";
export default {
name: "ViewContent",
components: {
streamDisplay
}
};
</script>