import React from "react"; | |
import OptFormWrapper from "../components/OptForm/OptFormWrapper"; | |
import OptFormText from "../components/OptForm/OptFormText"; | |
import OptFormEmail from "../components/OptForm/OptFormEmail"; | |
import OptFormButton from "../components/OptForm/OptFormButton"; | |
function OptFormCompound() { | |
return ( | |
<> | |
<OptFormText> | |
Ready to watch? Enter your email to create or restart your membership. | |
</OptFormText> | |
<OptFormWrapper> | |
<OptFormEmail placeholder="Email Address" /> | |
<OptFormButton>Get Started</OptFormButton> | |
</OptFormWrapper> | |
</> | |
); | |
} | |
export default OptFormCompound; | |