summaryrefslogtreecommitdiff
path: root/frontend/src/components/errors/errorToastContainer.js
diff options
context:
space:
mode:
Diffstat (limited to 'frontend/src/components/errors/errorToastContainer.js')
-rw-r--r--frontend/src/components/errors/errorToastContainer.js15
1 files changed, 10 insertions, 5 deletions
diff --git a/frontend/src/components/errors/errorToastContainer.js b/frontend/src/components/errors/errorToastContainer.js
index 7be91007..073b6038 100644
--- a/frontend/src/components/errors/errorToastContainer.js
+++ b/frontend/src/components/errors/errorToastContainer.js
@@ -1,9 +1,14 @@
-import React from 'react'
+import React from 'react';
import ReduxToastr from 'react-redux-toastr';
import './react-redux-toastr.min.css';
-const ErrorToastContainer = (props) => (
- <ReduxToastr timeOut={4000} preventDuplicates position="bottom-left" progressBar />
-)
+const ErrorToastContainer = props => (
+ <ReduxToastr
+ timeOut={4000}
+ preventDuplicates
+ position="bottom-left"
+ progressBar
+ />
+);
-export default ErrorToastContainer
+export default ErrorToastContainer;
bgstack15