react-waitlist
Version:
A customizable waitlist form component for React applications
15 lines (14 loc) • 903 B
TypeScript
/**
* Server-side components and utilities for React Waitlist
* This file is specifically for use with SSR frameworks
*/
export { default as ServerWaitlist } from './components/ServerWaitlist';
export { createResendProxy } from './server/proxy';
export type { ResendProxyConfig } from './server/proxy';
export { createWebhookProxy } from './server/webhookProxy';
export type { WebhookProxyConfig } from './server/webhookProxy';
export { createRecaptchaProxy } from './server/recaptchaProxy';
export type { RecaptchaProxyOptions } from './server/recaptchaProxy';
export type { Field, WaitlistProps, ThemeConfig, SecurityConfig, AnalyticsConfig, ResendMapping, WebhookConfig, A11yConfig, FrameworkConfig } from './core/types';
export { defaultTheme, tailwindDefaultTheme, materialUIDefaultTheme, mergeTheme } from './core/theme';
export type { ServerWaitlistProps } from './components/ServerWaitlist';