I was a student, a lawyer, a student again, then I went to IT and decided to stay.
My goal is to become a front-end developer, work with modern technologies, learn new things and move forward.
I want to create user-friendly apps that people like.
Russian Federation, Saratov
Contacts:
I was a student, a lawyer, a student again, then I went to IT and decided to stay.
My goal is to become a front-end developer, work with modern technologies, learn new things and move forward.
I want to create user-friendly apps that people like.
Base of: HTML, CSS, JavaScript, React, Reacct-Redux, react-router, PHP, WordPress
const SubmitForm = (props) => {
const classes = useStyles();
const [term, setTerm] = useState('');
const handleSubmit = (e) => {
e.preventDefault();
if(term === '') return;
props.onFormSubmit(term);
setTerm( '' );
}
return(
<form onSubmit={handleSubmit} className={classes.root}>
<TextField
type='text'
className='input'
placeholder='Enter Item'
value={term}
onChange={(e) => {setTerm(e.target.value)}}
/>
< Button className='' variant="contained" color="primary" type='submit'>Add</Button>
</form>
);
}
Intermediate (according to the online Quick-test at EFset www.efset.org)