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/views/setupWizard/SetupWizardPage.stories.js

19 lines
567 B

import React from 'react';
import SetupWizardPage from './SetupWizardPage';
import { finalStep } from './SetupWizardState';
export default {
title: 'views/setupWizard/SetupWizardPage',
component: SetupWizardPage,
};
export const atStep1 = () => <SetupWizardPage currentStep={1} />;
export const atStep2 = () => <SetupWizardPage currentStep={2} />;
export const atStep3 = () => <SetupWizardPage currentStep={3} />;
export const atStep4 = () => <SetupWizardPage currentStep={4} />;
export const atFinalStep = () => <SetupWizardPage currentStep={finalStep} />;