import React, {PropsWithChildren, ReactPortal} from "react"; import Alert from "../alert/Alert"; import {createPortal} from "react-dom"; interface Props { duration?: number; } export default function Toaster(props: PropsWithChildren): JSX.Element | ReactPortal { return createPortal({props.children}, document.body); }