Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

1st push #205

Open
wants to merge 8 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 15 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,18 +35,28 @@ Commit your code regularly and meaningfully. This helps both you (in case you ev
Demonstrate your understanding of this week's concepts by answering the following free-form questions. Edit this document to include your answers after each question.

1. In 1-2 sentences, explain what React's `useRouteMatch` hook is used for.

'useRouteMatch' is useful when your using 'route' so you can access its match data. It matches the url like 'route' would including the exact and strict options.
If it is not provided argument it returns the closest match in the component or its parents.

1. How would you explain form validation to someone who has never programmed before?

testing that information needed for a form is accurate and not missing in all required inputs


1. In 1-2 sentences, define end to end testing.

Used to test the preformance of an application under product like circumstances replicationg a live setting. Used to simulate what a real user scenario from start to finish.

## Instructions

### Task 1: Project Set Up

- [ ] Create a forked copy of this project
- [ ] Clone your OWN version of the repository (Not Lambda's by mistake!)
- [ ] Implement the project on the main branch, committing changes regularly
- [ ] Push commits: `git push origin main`
- [ ] PUSH EVERYTHING TO THE MAIN BRANCH
- [. ] Create a forked copy of this project
- [ .] Clone your OWN version of the repository (Not Lambda's by mistake!)
- [. ] Implement the project on the main branch, committing changes regularly
- [. ] Push commits: `git push origin main`
- [ .] PUSH EVERYTHING TO THE MAIN BRANCH

### Task 2: Project Requirements

Expand Down
Loading