We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
пример из туториала который я нашел
const LoginSchema = Yup.object().shape({ email: Yup.string() .email("Invalid email address format") .required("Email is required"), password: Yup.string() .min(3, "Password must be 3 characters at minimum") .required("Password is required") }); <Formik initialValues={{ email: "", password: "" }} validationSchema={LoginSchema}
сделать отдельным компонентом. можем ли мы заюзать компонент, который мы делали в sendgrid-forms? https://github.com/atherdon/subscribe-form/blob/master/components/forms/subscribe.js#L53
использовать email component для обоих форм
вынести чекбоксы в отдельные файлы. я хочу потом эти checkboxes re-use https://github.com/atherdon/subscribe-form/blob/master/components/forms/subscribe.js#L86 https://github.com/atherdon/subscribe-form/blob/master/components/forms/subscribe.js#L92 https://github.com/atherdon/subscribe-form/blob/master/components/forms/subscribe.js#L98 https://github.com/atherdon/subscribe-form/blob/master/components/forms/subscribe.js#L104 https://github.com/atherdon/subscribe-form/blob/master/components/forms/subscribe.js#L110
сс @coder-do
The text was updated successfully, but these errors were encountered:
Первые 3 сделал
насчёт 4ого - у нас и так есть отдельный компонент чекбоксов, если имеете ввиду что еще эти 5 вместе вынести куда то - сделаю
Sorry, something went wrong.
ну у нас хоть и компонент отдельный, все равно параметры передаются тут.
причина по которой я хочу вынести их отдельно - чтобы форма была более flexible. плюс позже, мы сможем это использовать в #56
там же тоже есть чекбоксы, которые относятся к типам рассылок
No branches or pull requests
https://github.com/atherdon/subscribe-form/blob/master/components/forms/subscribe.js#L14
пример из туториала который я нашел
сделать отдельным компонентом. можем ли мы заюзать компонент, который мы делали в sendgrid-forms? https://github.com/atherdon/subscribe-form/blob/master/components/forms/subscribe.js#L53
использовать email component для обоих форм
вынести чекбоксы в отдельные файлы. я хочу потом эти checkboxes re-use
https://github.com/atherdon/subscribe-form/blob/master/components/forms/subscribe.js#L86
https://github.com/atherdon/subscribe-form/blob/master/components/forms/subscribe.js#L92
https://github.com/atherdon/subscribe-form/blob/master/components/forms/subscribe.js#L98
https://github.com/atherdon/subscribe-form/blob/master/components/forms/subscribe.js#L104
https://github.com/atherdon/subscribe-form/blob/master/components/forms/subscribe.js#L110
сс @coder-do
The text was updated successfully, but these errors were encountered: