PHP Classes

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

Recommend this page to a friend!
  Classes of Maniruzzaman Akash   WordPress React Plugin Kit   src/components/loading/TableLoading.stories.tsx   Download  
File: src/components/loading/TableLoading.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: 396 bytes
 

Contents

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