PHP Classes

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

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

Contents

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