UNPKG

@patreon/studio

Version:

Patreon Studio Design System

10 lines 450 B
import React from 'react'; import { ColorSystemContainerPassthrough } from '~/components/ColorSystemContainer'; /** * PortalPassthrough can be used to pass information from a parent component to a child component * that is rendered in a different location in the DOM. */ export function PortalPassthrough({ children }) { return <ColorSystemContainerPassthrough>{children}</ColorSystemContainerPassthrough>; } //# sourceMappingURL=index.jsx.map