import React, { useState } from "react"; import { useHistory } from "react-router-dom"; const Signup = (props) => { let history = useHistory(); const [username, setUsername] = useState(""); const [password, setPassword] = useState(""); const onSubmit = async (e) => { e.preventDefault(); const requestOptions = { method: "POST", headers: { "Content-Type": "application/json" }, body: JSON.stringify({ username: username, password: password }), }; try { const response = await fetch( `${process.env.REACT_APP_API_ENDPOINT}/token/`, requestOptions ); const data = await response.json(); localStorage.setItem("token", data.access); localStorage.setItem("refresh", data.refresh); history.push("/"); } catch (e) { console.error(e); } }; return (
); }; export default Signup;