Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: 15 days 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 (over 7 years ago)
- Default Branch: master
- Last Pushed: 2019-04-22T16:58:21.000Z (almost 6 years ago)
- Last Synced: 2024-12-08T21:18:52.656Z (about 2 months ago)
- Language: JavaScript
- Homepage: http://jonathanconway.co/react-router-wizard
- Size: 441 KB
- Stars: 3
- Watchers: 1
- 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.