react-use-mailchimp
v0.4.0
Published
A react hook to use to create a custom sign up form for your website.
Downloads
38
Readme
react-use-mailchimp
A react hook to use to create a custom sign up form for your website.
API
import { useMailchimp } from 'react-use-mailchimp';
const url = '...';
const Component = () => {
const [state, subscribe, reset] = useMailchimp({
url
});
return <>TODO</>;
};