The communications platform that puts data protection first.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
Rocket.Chat/client/components/setupWizard/steps/SettingsBasedStep.stories.js

16 lines
436 B

import { boolean, select, text } from '@storybook/addon-knobs';
import React from 'react';
import { SettingsBasedStep } from './SettingsBasedStep';
export default {
title: 'setupWizard/steps/SettingsBasedStep',
component: SettingsBasedStep,
};
export const _default = () =>
<SettingsBasedStep
step={select('step', [1, 2, 3, 4, 'final'], 2)}
title={text('title', 'Settings-Based Step')}
active={boolean('active', true)}
/>;