mirror of
				https://github.com/lingble/chatwoot.git
				synced 2025-11-04 04:57:51 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			20 lines
		
	
	
		
			476 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			476 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
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'),
 | 
						|
};
 |