@dcrackel/meyersquaredui
Version:
This template should help get you started developing with Vue 3 in Vite. The template uses Vue 3 `<script setup>` SFCs, check out the [script setup docs](https://v3.vuejs.org/api/sfc-script-setup.html#sfc-script-setup) to learn more.
24 lines (19 loc) • 438 B
JavaScript
import TableauLines from './TableauLines.vue';
export default {
title: 'Organisms/Tableau/TableauLines',
component: TableauLines,
args: {
roundName: 'Table of 8',
},
argTypes: {
roundName: {
control: 'string',
description: 'Name of the round to display'
}
}
};
export const Default = {
args: {
roundName: 'Table of 8',
}
};