Files
fredy/ui/src/components/toasts/ToastContext.jsx

8 lines
152 B
React
Raw Normal View History

import { createContext } from 'react';
const CheckoutDrawerContext = createContext({
showToast: () => {},
});
export default CheckoutDrawerContext;