https://github.com/jonathanconway/react-router-wizard
A React container for assembling components into a wizard interface. Works with react-router.
https://github.com/jonathanconway/react-router-wizard
Last synced: 2 months ago
JSON representation
A React container for assembling components into a wizard interface. Works with react-router.
- Host: GitHub
- URL: https://github.com/jonathanconway/react-router-wizard
- Owner: jonathanconway
- License: mit
- Created: 2017-06-01T03:24:17.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2019-04-22T16:58:21.000Z (about 6 years ago)
- Last Synced: 2025-04-09T22:21:22.568Z (3 months ago)
- Language: JavaScript
- Homepage: http://jonathanconway.co/react-router-wizard
- Size: 441 KB
- Stars: 3
- Watchers: 0
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# react-router-wizard
A React container for assembling components into a wizard interface. Works with [`react-router`](https://github.com/ReactTraining/react-router).
![]()
+
![]()
+
![]()
## Installation
Install with npm (or yarn).
```sh
npm install react-wizard --save
```## Usage
```
import React, { Component } from 'react';
import { HashRouter } from 'react-router-dom';
import Wizard, { Step } from 'react-router-wizard';export default class App extends Component {
render() {
return (
Welcome to Step 1
Welcome to Step 2
Welcome to Step 3
);
}
}
```## License
[MIT](LICENSE). Copyright (c) 2017 Jonathan Conway.