UNPKG

@stickyants/react-slot

Version:

A simple library package to provide Slot functionality for React apps

12 lines (11 loc) 289 B
/// <reference types="react" /> export declare function SlotsContainer({ children }: { children: any; }): JSX.Element; export declare function Slot({ name }: { name: any; }): any; export declare function SlotContent({ name, children }: { name: any; children: any; }): any;