import type { FC, PropsWithChildren } from "react"; import { createPortal } from "react-dom"; import { BaseStyles } from "theme-ui"; export const ReactTooltipPortal: FC = ({ children }) => createPortal({children}, document.body);