Optimize the project structure and introduce DDD design (#394)
This commit is contained in:
13
projects/app/src/web/common/hooks/useToast.ts
Normal file
13
projects/app/src/web/common/hooks/useToast.ts
Normal file
@@ -0,0 +1,13 @@
|
||||
import { useToast as uToast, UseToastOptions } from '@chakra-ui/react';
|
||||
|
||||
export const useToast = (props?: UseToastOptions) => {
|
||||
const toast = uToast({
|
||||
position: 'top',
|
||||
duration: 2000,
|
||||
...props
|
||||
});
|
||||
|
||||
return {
|
||||
toast
|
||||
};
|
||||
};
|
||||
Reference in New Issue
Block a user