react-waitlist
Version:
A customizable waitlist form component for React applications
10 lines (9 loc) • 328 B
TypeScript
import React from 'react';
import { WaitlistProps } from '../core/types';
/**
* Client-side waitlist component for SSR
* This component is designed to be used with ServerWaitlist in SSR frameworks
* Import from 'react-waitlist/client'
*/
declare const ClientWaitlist: React.FC<WaitlistProps>;
export default ClientWaitlist;