UNPKG

event-services

Version:

Collection of hooks, components, generics (buttons, containers, styles, tools) for creating web applications for guest management for any type of events: weddings, parties, graduations that require guest confirmation and display useful information to gues

13 lines (12 loc) 377 B
/// <reference types="react" /> interface RootContainerI { animation?: string; animateOnce?: boolean; fluid?: boolean; noGap?: boolean; noPadding?: boolean; className?: string; children: React.ReactNode; } export declare const RootContainer: ({ children, className, ...props }: RootContainerI) => import("react/jsx-runtime").JSX.Element; export {};