diff --git a/src/pages/Signup.js b/src/pages/Signup.js index f9d2ea6..8811c67 100644 --- a/src/pages/Signup.js +++ b/src/pages/Signup.js @@ -14,6 +14,12 @@ export function Signup ( props ) { evt.preventDefault() } + useEffect( () => { + if(username.length > 4) { + console.log("longer than 4 characters") + } + } + ) return ( @@ -23,7 +29,12 @@ export function Signup ( props ) {