feat: One off campaign UI (#2621)

This commit is contained in:
Muhsin Keloth
2021-07-15 13:31:43 +05:30
committed by GitHub
parent aa7db90cd2
commit cf785123a5
16 changed files with 473 additions and 107 deletions

View File

@@ -1,5 +1,5 @@
import { action } from '@storybook/addon-actions';
import WootDateRangePicker from '../DateRangePicker';
import WootDateRangePicker from '../DateRangePicker.vue';
export default {
title: 'Components/Date Picker/Date Range Picker',
@@ -34,5 +34,5 @@ const Template = (args, { argTypes }) => ({
export const DateRangePicker = Template.bind({});
DateRangePicker.args = {
onChange: action('applied'),
value: [new Date(), new Date()],
value: new Date(),
};