mirror of
https://github.com/usatiuk/ustk-todolist.git
synced 2025-10-28 23:57:49 +01:00
auth using google
This commit is contained in:
@@ -11,7 +11,13 @@ export default function InputField({
|
||||
}) {
|
||||
return (
|
||||
<React.Fragment>
|
||||
<TextField label={label} required={required} {...input} type={type} />
|
||||
<TextField
|
||||
label={label}
|
||||
required={required}
|
||||
{...input}
|
||||
type={type}
|
||||
style={{ marginBottom: '1rem' }}
|
||||
/>
|
||||
{touched && error && <span className="error">{error}</span>}
|
||||
</React.Fragment>
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user