Skip to content

tiaanduplessis/react-basic-error-boundary

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

react-basic-error-boundary

package version package downloads standard-readme compliant package license make a pull request JavaScript Style Guide Greenkeeper badge

Basic error boundary component. Based on the React documentation.

Table of Contents

Install

This project uses node and npm.

$ npm install react-basic-error-boundary
$ # OR
$ yarn add react-basic-error-boundary

Usage

import React, {Component} from 'react'
import BasicErrorBoundary from 'react-basic-error-boundary'


class App extends Component () {
	render() {
		return <BasicErrorBoundary
			fallback={() => <NoMatch/>}
			onError={(error) => console.error(error)}
			>
		<h1>Hi</h1>
		</BasicErrorBoundary>
	}
}

export default App

Contribute

  1. Fork it and create your feature branch: git checkout -b my-new-feature
  2. Commit your changes: git commit -am "Add some feature"
  3. Push to the branch: git push origin my-new-feature
  4. Submit a pull request

License

MIT © tiaanduplessis