0.1.0 • Published 8 years ago
material-ui-not-found v0.1.0
material-ui-not-found
Material-UI NotFound
'Resource Not Found' component for React integrated with material-ui package.
Requirements
- React 16.2.0 (not tested on other versions)
 - Material-UI 0.20.0 (not tested on other versions)
 
Required Knowledge
I recommend that you get to know React and Material-UI.
Installation
npm i material-ui-not-found --saveor
yarn add material-ui-not-foundUsage
Once installed, just import and use the component:
import React from 'react';
import {NotFound} from 'material-ui-not-found/NotFound';
const className = 'custom-class';
const style = {
  width: '50%',
};
export const Example = () => (
  <NotFound
    className={className}
    style={style}
    text={'Unknown resource.'}
  />
);
export default Example;Properties
| Props | Options | Default | Description | 
|---|---|---|---|
| className | String | '' | Adds custom class to component wrapper. | 
| style | Object | {} | Adds custom inline styles to component wrapper. | 
| text | String | 'Page was not found.' | Replaces default text 'Page was not found.' with custom. | 
Contribute
- Submit an issue
 - Fork the repository
 - Create a dedicated branch (never ever work in 
master) - The first time, run command: 
yarninto the directory - Fix bugs or implement features
 
Future
- Add tests
 - Add examples
 
License
This project is licensed under the terms of the MIT license
0.1.0
8 years ago