How to use react-stepzilla - 1 common examples

To help you get started, we’ve selected a few react-stepzilla examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github otavanopisto / muikku / muikku-core-plugins / src / main / resources / META-INF / resources / scripts / src / components / workspace / workspaceManagement / body / copyWizard / index.tsx View on Github external
import * as React from "react";
import { WorkspaceType } from "~/reducers/workspaces";
import { i18nType } from "~/reducers/base/i18n";
import Step1 from "./form";
import Step2 from "./summary";
const StepZilla = require('react-stepzilla').default;
import moment from "~/lib/moment";
import '~/sass/elements/wizard.scss';
import { copyCurrentWorkspace, CopyCurrentWorkspaceTriggerType, CopyCurrentWorkspaceStepType } from "~/actions/workspaces";
import { connect, Dispatch } from "react-redux";
import { StateType } from "~/reducers";
import { bindActionCreators } from "redux";

interface CopyWizardProps {
  workspace: WorkspaceType,
  i18n: i18nType,
  copyCurrentWorkspace: CopyCurrentWorkspaceTriggerType,
  onDone: ()=>any
}

interface CopyWizardState {
  store: CopyWizardStoreType,

react-stepzilla

A react multi-step, wizard component for managing data collection via forms and sub components

ISC
Latest version published 3 years ago

Package Health Score

54 / 100
Full package analysis

Popular react-stepzilla functions