omenking / aws-bootcamp-cruddur-2023

441 stars 709 forks source link

Changed the SignupPage component from a function to an arrow function. #5

Closed Ben-lad closed 1 year ago

Ben-lad commented 1 year ago

Changed the SignupPage component from a function to an arrow function.

The original component was defined using the function keyword, but I updated it to use an arrow function instead. This change provides a more concise syntax and also avoids any issues with the binding of the "this" keyword.

I have tested the updated component and verified that it works as expected.

Thanks for considering this change!