import React from "react"; import Portal from "../src/index"; export let name = "Basic"; export let Example = () => (
This is in the normal react root, with an overflow hidden parent, clips the box.
This is in the portal, rendered in the DOM at the document root so the CSS doesn't screw things up, but we render it in the react hierarchy where it makes sense.
);