chore: add note to background widget

This commit is contained in:
David Ralph
2021-04-13 20:27:56 +01:00
parent 18c6514666
commit aff4158901
2 changed files with 2 additions and 1 deletions

View File

@@ -27,7 +27,7 @@ export default class App extends React.PureComponent {
render() {
return (
<>
<Background/>
{(localStorage.getItem('background') === 'true') ? <Background/> : null}
<ToastContainer position='bottom-right' autoClose={localStorage.getItem('toastDisplayTime') || 2500} newestOnTop={true} closeOnClick pauseOnFocusLoss/>
<div id='center'>
<Widgets/>

View File

@@ -1,3 +1,4 @@
// TODO: rewrite this tomorrow
import React from 'react';
import EventBus from '../../../modules/helpers/eventbus';