PHP Classes

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

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

Contents

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