import React, {useState} from 'react'; import { TextField, Button, Checkbox, FormControlLabel, Grid, } from "@material-ui/core"; import ContentSection from "../../../components/ContentSection/ContentSection"; import {get, post} from "../../../requests"; const Registration = ({ setUser }) => { const [username, setUsername] = useState(''); const handleChange = (event) => { setUsername(event.target.value); }; const handleSubmit = () => { post('users/', { username }) .then(response => { setUser(response.data); }) .catch(err => { get('users/').then(response => { setUser(response.data.filter(user => user.username === username)[0]); }); }); }; return (

Choose yourself a username to track your progress and compete with others:

} label="Remember me" />
); }; export default Registration;