import React, { useRef } from 'react'; import { action } from '@storybook/addon-actions'; import LabelColors from 'shared/constants/labelColors'; import Card from '.'; export default { component: Card, title: 'Card', parameters: { backgrounds: [ { name: 'gray', value: '#f8f8f8', default: true }, { name: 'white', value: '#ffffff' }, ], }, }; const labelData: Array = [ { id: 'development', name: 'Development', createdDate: new Date().toString(), labelColor: { id: '1', colorHex: LabelColors.BLUE, name: 'blue', position: 1, }, }, ]; export const Default = () => { const $ref = useRef(null); return ( ); }; export const Labels = () => { const $ref = useRef(null); return ( ); }; export const Badges = () => { const $ref = useRef(null); return ( ); }; export const PastDue = () => { const $ref = useRef(null); return ( ); }; export const Everything = () => { const $ref = useRef(null); return ( ); }; export const Members = () => { const $ref = useRef(null); return ( ); }; export const Editable = () => { const $ref = useRef(null); return ( ); };