Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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.

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).


ReactJS logo
+
React-Router logo
+
Wizard sketch

## 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.