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

12 lines (11 loc) 292 B
import { TimeLineT } from '..'; type SimpleProps = { timeline: TimeLineT[]; address: AddressT; }; type AddressT = { address: string; link: string; }; declare const Simple: ({ timeline, address }: SimpleProps) => import("react/jsx-runtime").JSX.Element; export default Simple;