mirror of
https://github.com/reiyua/RaysBookClub.git
synced 2026-01-20 15:37:47 +00:00
Setup State for checking credentials
This commit is contained in:
parent
90fd5583fd
commit
53332a2bb2
1 changed files with 4 additions and 1 deletions
|
|
@ -3,9 +3,12 @@ import Container from 'react-bootstrap/Container';
|
|||
import Row from 'react-bootstrap/Row';
|
||||
import Col from 'react-bootstrap/Col';
|
||||
import Button from "react-bootstrap/Button"
|
||||
import {useState, useEffect} from 'react';
|
||||
|
||||
export function Signup ( props ) {
|
||||
|
||||
const[username,setUsername] = useState('')
|
||||
const[useremail,setUseremail] = useState('')
|
||||
const[password,setPassword] = useState('')
|
||||
const submitHandler = (evt) => {
|
||||
evt.preventDefault()
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue