PHP Classes

File: src/components/loading/LineChartLoading.stories.tsx

Recommend this page to a friend!
  Classes of Maniruzzaman Akash   WordPress React Plugin Kit   src/components/loading/LineChartLoading.stories.tsx   Download  
File: src/components/loading/LineChartLoading.stories.tsx
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: WordPress React Plugin Kit
Environment to develop new WordPress plugins
Author: By
Last change:
Date: 1 year ago
Size: 428 bytes
 

Contents

Class file image Download
import { ComponentStory, ComponentMeta } from '@storybook/react'; import LineChartLoading from './LineChartLoading'; export default { title: 'Common/Loading/LineChartLoading', component: LineChartLoading, } as ComponentMeta<typeof LineChartLoading>; const Template: ComponentStory<typeof LineChartLoading> = (args) => ( <LineChartLoading {...args} /> ); export const DefaultLineChartLoading = Template.bind({});