Skip to content

Instantly share code, notes, and snippets.

@YKalashnikov
Last active June 8, 2018 00:59
Show Gist options
  • Save YKalashnikov/911954686b5c25a5c7fbe83b3e9a1b65 to your computer and use it in GitHub Desktop.
Save YKalashnikov/911954686b5c25a5c7fbe83b3e9a1b65 to your computer and use it in GitHub Desktop.
export const validate = inputs => {
const errors = {};
if (!inputs.username) {
errors.username = 'Введите имя пользователя';
} else if (inputs.username !== 'Юрчик') {
errors.username = 'Имя пользователя неверно';
}
if (!inputs.password) {
errors.password = 'Введите ваш пароль';
}
return errors;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment