Add Handler to stop page refreshing upon submission
This commit is contained in:
parent
af5171baa3
commit
90fd5583fd
|
@ -5,6 +5,12 @@ import Col from 'react-bootstrap/Col';
|
||||||
import Button from "react-bootstrap/Button"
|
import Button from "react-bootstrap/Button"
|
||||||
|
|
||||||
export function Signup ( props ) {
|
export function Signup ( props ) {
|
||||||
|
|
||||||
|
const submitHandler = (evt) => {
|
||||||
|
evt.preventDefault()
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
return (
|
return (
|
||||||
|
|
||||||
<Container>
|
<Container>
|
||||||
|
|
Loading…
Reference in New Issue