Step 7 and styling updates

This commit is contained in:
Elizabeth Craig
2019-03-01 07:48:27 -08:00
parent 0e24c8ca9c
commit ed66d75d34
4 changed files with 33 additions and 25 deletions

View File

@@ -72,7 +72,7 @@ myFunc(...arr);
Spreading an object into props for a React component:
```tsx
```jsx
const obj = { a: 1, b: 2, c: 3 };
// equivalent to:
// <MyComponent a={obj.a} b={obj.b} c={obj.c} />