This pull request introduces the addition of React Router and Axios dependencies, sets up React Router in the application, and adds a new VerificationForm component for account verification.
Changes:
Added @types/react-router-dom version ^5.3.3 to dependencies.
Added axios version ^1.7.2 to dependencies.
Added react-router-dom version ^6.25.1 to dependencies.
Updated package-lock.json to reflect the new dependencies.
Removed initial Vite template code from src/App.tsx.
Added React Router setup with routes for the dummy home page and verification form.
Added VerificationForm.tsx component for account verification.
Added VerificationForm.css for styling the verification form.
Purpose:
The purpose of this pull request is to enhance the project's functionality by adding routing capabilities with React Router, enabling HTTP requests with Axios, and providing a user interface for account verification. This allows users to navigate through different pages in the application and verify their accounts by entering a code sent to their email.
Description:
This pull request introduces the addition of React Router and Axios dependencies, sets up React Router in the application, and adds a new VerificationForm component for account verification.
Changes:
@types/react-router-dom
version^5.3.3
todependencies
.axios
version^1.7.2
todependencies
.react-router-dom
version^6.25.1
todependencies
.package-lock.json
to reflect the new dependencies.src/App.tsx
.VerificationForm.tsx
component for account verification.VerificationForm.css
for styling the verification form.Purpose:
The purpose of this pull request is to enhance the project's functionality by adding routing capabilities with React Router, enabling HTTP requests with Axios, and providing a user interface for account verification. This allows users to navigate through different pages in the application and verify their accounts by entering a code sent to their email.