react-native-ui-lib
Version:
[](https://travis-ci.org/wix/react-native-ui-lib) [](https://www.npmjs.com/package/react-native-ui-lib) [![NPM Down
18 lines (15 loc) • 484 B
JavaScript
import React from 'react';
import {BaseComponent} from '../../commons';
import Toast from '../toast';
/**
* @description: The Notification component will be changed soon, please use the Toast component instead
*/
export default class Notification extends BaseComponent {
constructor(props) {
super(props);
console.error('"Notification" component will be changed soon, please use "Toast" component instead.');
}
render() {
return <Toast {...this.props} />;
}
}