1.0.5 • Published 6 years ago

react-auto-progress v1.0.5

Weekly downloads
6
License
MIT
Repository
github
Last release
6 years ago

react-auto-progress

Travis npm package Coveralls

A zero configuration progress loading bar component for React.

Just add a reference and it’s done.

The component interact with every ajax requisition to add a google top progress bar style

<script>
import AutoProgress from 'react-auto-progress'

//In your root component

render() {
	return <div>
		<AutoProgress />
		<YourComponents />
	</div>
}

</script>