@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.
23 lines (20 loc) • 521 B
JavaScript
import LivePool from './LivePool.vue';
import getInitialPoolAssignments from '../../../../mocks/getInitialPoolAssignments';
export default {
title: 'Organisms/ScoreBoardParts/LivePool/LivePool',
component: LivePool,
tags: ['autodocs'],
argTypes: {
pool: { control: 'object' },
},
parameters: {
backgrounds: {
default: 'light',
},
},
};
export const Default = {
args: {
pool: getInitialPoolAssignments.pools[0],
},
};