File size: 650 Bytes
f5071ca |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
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;
|