rc-wizard@0.0.9

React wizard

// use jsx to render html, do not modify simple.html

import React from 'react';
import ReactDOM from 'react-dom';
import Wizard from 'rc-wizard';
require('rc-wizard/assets/index.css');

const Test = () => {
  return (
    <Wizard id="test" onDone={() => { alert('Wizard is done'); }}>
      <Wizard.Step key="1">
        I'm the first page.
      </Wizard.Step>
      <Wizard.Step key="2">
        I'm the second page.
      </Wizard.Step>
      <Wizard.Step key="3">
        I'm the third page.
      </Wizard.Step>
    </Wizard>
  );
};

ReactDOM.render(<Test />, document.getElementById('__react-content'));
Fork me on GitHub