Files
fredy/ui/src/components/toasts/ToastContext.jsx
2022-12-19 21:44:10 +01:00

8 lines
152 B
JavaScript

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