feat: Add customer satisfaction component (#2456)

This commit is contained in:
Muhsin Keloth 2021-06-22 13:01:19 +05:30 committed by GitHub
parent a357b657a8
commit 29b9915d3b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
11 changed files with 225 additions and 6 deletions

View file

@ -0,0 +1,19 @@
import { action } from '@storybook/addon-actions';
import CustomerSatisfaction from './CustomerSatisfaction';
export default {
title: 'Components/CustomerSatisfaction',
component: CustomerSatisfaction,
argTypes: {},
};
const Template = (args, { argTypes }) => ({
props: Object.keys(argTypes),
components: { CustomerSatisfaction },
template: '<customer-satisfaction />',
});
export const item = Template.bind({});
item.args = {
onClick: action('Selected'),
};