import React from 'react' import { PixelPortal } from './PixelPortal' export function Default() { return (
Portaled content (renders into document.body after mount)
) } export function Disabled() { return (
Rendered inline — portal disabled
) }