I am a green div that turns red on hove
# Exercises
+If you don't already have the app running, start it by running `npm start` from the root of the `frontend-bootcamp` folder. Click the "exercise" link under day 2 step 3 to see results.
+
## Fabric theming and styling
### Applying Fabric themes
diff --git a/step2-04/README.md b/step2-04/README.md
index d9dd1d8..e1e57de 100644
--- a/step2-04/README.md
+++ b/step2-04/README.md
@@ -115,7 +115,7 @@ it('tests async functions', async () => {
## Jest basics
-In this repo, we can start an inner loop development of tests with the command: `npm test`
+In this repo, we can start an inner loop development of tests by running `npm test` from the root of the `frontend-bootcamp` folder.
Take a look at code inside `demo/src`:
diff --git a/step2-06/README.md b/step2-06/README.md
index b2297ca..a4f81a4 100644
--- a/step2-06/README.md
+++ b/step2-06/README.md
@@ -75,6 +75,8 @@ The Chrome / Firefox Redux dev tools extension is a work of genius! It lets you
# Exercise
+If you still have `npm test` running from the previous step, stop it with `ctrl+C`. Start the app by running `npm start` from the root of the `frontend-bootcamp` folder. Click the "exercise" link under day 2 step 6 to see results.
+
## Visualize the state changes with Chrome extension
1. Install [Chrome extension](https://chrome.google.com/webstore/detail/redux-devtools/lmhkpmbekcpmknklioeibfkpmmfibljd)
diff --git a/step2-07/README.md b/step2-07/README.md
index 815ea47..48aec50 100644
--- a/step2-07/README.md
+++ b/step2-07/README.md
@@ -75,6 +75,8 @@ function mapDispatchToProps(dispatch) {
# Exercise
+If you don't already have the app running, start it by running `npm start` from the root of the `frontend-bootcamp` folder. Click the "exercise" link under day 2 step 7 to see results.
+
1. open up `exercise/src/index.tsx` and wrap `
` with `` as instructed in the comment
2. open up `exercise/src/components/TodoFooter.tsx` and erase the "nullable" type modifier (i.e. the ?) in the interface definition of `TodoFooterProps`
diff --git a/step2-08/README.md b/step2-08/README.md
index 2822f8f..a87e1fc 100644
--- a/step2-08/README.md
+++ b/step2-08/README.md
@@ -146,6 +146,8 @@ export const reducer = combineReducers({
# Exercise
+If you don't already have the app running, start it by running `npm start` from the root of the `frontend-bootcamp` folder. Click the "exercise" link under day 2 step 8 to see results.
+
> Hint! This section is tricky, so all the solution is inside "demo" as usual. Feel free to copy & paste if you get stuck!!
1. open up `exercise/src/reducers/index.ts`
diff --git a/step2-09/README.md b/step2-09/README.md
index 102e472..0dec6c6 100644
--- a/step2-09/README.md
+++ b/step2-09/README.md
@@ -51,6 +51,8 @@ Let's make some observations:
# Exercise
+If you don't already have the app running, start it by running `npm start` from the root of the `frontend-bootcamp` folder. Click the "exercise" link under day 2 step 9 to see results.
+
1. open up `exercise/src/service/index.ts` and study the signature of the functions to call the service such as the `add()` function
2. open `exercise/src/actions/index.ts` and fill in the missing content inside `actionsWithService`