React js Notification Listing, event listing, with clear button
npm install react-event-list
yarn add react-event-list
``
import React, {Component} from "react";
import {EventLogList} from "react-event-list";
class App extends Component {
render() {
return (
logs={[
"Ibra logged in at 3 PM ",
"Ben started exporting Monthly report as CSV ,
"Smith printed a document ",
]}
clearBtnText={"Clear notifications"}
/>
export default App;
``