Components
Loading preview...
A customizable newsletter signup form with validation and success message.
npx shadcn@latest add https://21st.dev/r/preetsuthar17/newsletter-signupimport { NewsletterSignup } from "@/components/ui/newsletter-signup"
const Demo = () => {
const handleSubmit = async (email: string) => {
// Handle form submission
// await submitToAPI(email);
console.log("hello")
};
return <NewsletterSignup onSubmit={handleSubmit} />;
};
export { Demo }