ep-react-ui
Version:
EP react UI elements.
26 lines (22 loc) • 843 B
JavaScript
import React, { Component } from 'react';
import DocNotificationBasic from './DocNotificationBasic';
export default class DocNotification extends Component {
render() {
return (
<div className="page">
<header className="page-title">
<div className="container">
<h1>Notification Component</h1>
<p>This component will generate a push notifications section on screen.</p>
</div>
</header>
<div className="page-content">
<div className="container">
<DocNotificationBasic />
<hr className="seperator" />
</div>
</div>
</div>
);
}
}