Skip to content

Commit

Permalink
Remove unused callback
Browse files Browse the repository at this point in the history
  • Loading branch information
mathiasbergqvist committed Oct 13, 2022
1 parent 0ee9ea7 commit ba0b311
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 7 deletions.
2 changes: 1 addition & 1 deletion lab2/DO_NOT_README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
I `App.jsx`:

```javascript
<List title={"Users"} items={/*TODO: Task 4 */ []} />
<List title="Users" items={/*TODO: Task 4 */ []} />
```

## Task 3
Expand Down
8 changes: 2 additions & 6 deletions lab3/src/components/Container/Container.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,12 +30,8 @@ const Container = () => {
</span>
</p>
</div>
<BackgroundColorPicker
onChange={() => {
console.log("FOO");
}}
/>
<List title={"Users"} />
<BackgroundColorPicker />
<List title="Users" />
</div>
);
};
Expand Down

0 comments on commit ba0b311

Please sign in to comment.