Devendra174's picture
Upload folder using huggingface_hub
f5071ca verified
raw
history blame contribute delete
650 Bytes
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;