client/app/lib/components/core/NotificationBar.jsx
Function NotificationBar
has 36 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
const NotificationBar = (props) => {
const { notification, autoHideDuration = 5000, ...options } = props;
const message = notification && notification.message;
const errors = notification && notification.errors;
const [open, setOpen] = useState(false);
- Create a ticketCreate a ticket