6 lines
188 B
TypeScript
6 lines
188 B
TypeScript
|
|
// Importing from your existing shadcn/ui components
|
||
|
|
import { useToast as useToastOriginal } from "@/hooks/use-toast";
|
||
|
|
|
||
|
|
// Re-export the hook
|
||
|
|
export { useToast } from "@/hooks/use-toast";
|