storybook is added
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
import { action } from '@storybook/addon-actions';
|
||||
import { linkTo } from '@storybook/addon-links';
|
||||
|
||||
import { InlineEditInputComponent } from './inline-edit-input.component';
|
||||
|
||||
export default {
|
||||
title: 'InlineEditInputComponent',
|
||||
component: InlineEditInputComponent
|
||||
};
|
||||
|
||||
export const Text = () => ({
|
||||
component: InlineEditInputComponent,
|
||||
props: {
|
||||
text: 'Hello InlineEditInputComponent'
|
||||
}
|
||||
});
|
||||
@@ -0,0 +1,16 @@
|
||||
import { action } from '@storybook/addon-actions';
|
||||
import { linkTo } from '@storybook/addon-links';
|
||||
|
||||
import { PickTimeComponent } from './pick-time.component';
|
||||
|
||||
export default {
|
||||
title: 'PickTimeComponent',
|
||||
component: PickTimeComponent
|
||||
};
|
||||
|
||||
export const Text = () => ({
|
||||
component: PickTimeComponent,
|
||||
props: {
|
||||
text: 'Hello PickTimeComponent'
|
||||
}
|
||||
});
|
||||
@@ -0,0 +1,16 @@
|
||||
import { action } from '@storybook/addon-actions';
|
||||
import { linkTo } from '@storybook/addon-links';
|
||||
|
||||
import { StepInputComponent } from './step-input.component';
|
||||
|
||||
export default {
|
||||
title: 'StepInputComponent',
|
||||
component: StepInputComponent
|
||||
};
|
||||
|
||||
export const Text = () => ({
|
||||
component: StepInputComponent,
|
||||
props: {
|
||||
text: 'Hello StepInputComponent'
|
||||
}
|
||||
});
|
||||
@@ -0,0 +1,16 @@
|
||||
import { action } from '@storybook/addon-actions';
|
||||
import { linkTo } from '@storybook/addon-links';
|
||||
|
||||
import { TitleBarComponent } from './title-bar.component';
|
||||
|
||||
export default {
|
||||
title: 'TitleBarComponent',
|
||||
component: TitleBarComponent
|
||||
};
|
||||
|
||||
export const Text = () => ({
|
||||
component: TitleBarComponent,
|
||||
props: {
|
||||
text: 'Hello TitleBarComponent'
|
||||
}
|
||||
});
|
||||
Reference in New Issue
Block a user