diff --git a/src/client/src/components/ErrorSnackbar.js b/src/client/src/components/ErrorSnackbar.js
new file mode 100644
index 0000000..6c39763
--- /dev/null
+++ b/src/client/src/components/ErrorSnackbar.js
@@ -0,0 +1,29 @@
+import * as React from 'react';
+import Stack from '@mui/material/Stack';
+import Button from '@mui/material/Button';
+import Snackbar from '@mui/material/Snackbar';
+import MuiAlert from '@mui/material/Alert';
+
+const Alert = React.forwardRef(function Alert(props, ref) {
+ return ;
+});
+
+export default function showError(props) {
+ const handleClose = (event, reason) => {
+ if (reason === 'clickaway') {
+ return;
+ }
+
+ props.setOpen(false);
+ };
+
+ return (
+
+
+
+ {props.message}
+
+
+
+ );
+}