diff options
author | Victor Chabbert <chabbertvi@eisti.eu> | 2017-05-22 22:47:20 +0200 |
---|---|---|
committer | Victor Chabbert <chabbertvi@eisti.eu> | 2017-05-22 22:47:20 +0200 |
commit | 3ff3b72f31b4a2647366c17dd2bbba0a8aae58e9 (patch) | |
tree | 22cd8ad06323babb4d625cb1e4aeec8834081521 /frontend/src/components/errors/errorToastContainer.js | |
parent | Revert to version number for flow-typed (diff) | |
download | seven-wonders-3ff3b72f31b4a2647366c17dd2bbba0a8aae58e9.tar.gz seven-wonders-3ff3b72f31b4a2647366c17dd2bbba0a8aae58e9.tar.bz2 seven-wonders-3ff3b72f31b4a2647366c17dd2bbba0a8aae58e9.zip |
Move to prettier-eslint for better configuration
Diffstat (limited to 'frontend/src/components/errors/errorToastContainer.js')
-rw-r--r-- | frontend/src/components/errors/errorToastContainer.js | 15 |
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; |