17 lines
365 B
TypeScript
17 lines
365 B
TypeScript
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'
|
|
}
|
|
});
|