import React from "react"; import { Box, Text } from "theme-ui"; import { ToastProvider as DefaultToastProvider } from "react-toast-notifications"; function CustomToast({ children }) { return ( {children} ); } export function ToastProvider({ children }) { return ( {children} ); }