Skip to content
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
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ To start off and understand the desired toggle effect, try changing `let isSelec

### Tasks

- [ ] change the app to render 5 boards
- [ ] add state to track current selection
- [ ] add an event handler for the toggle button
- [X] change the app to render 5 boards
- [X] add state to track current selection
- [X] add an event handler for the toggle button

### To submit

Expand Down
12 changes: 9 additions & 3 deletions src/components/BoardSwitcher.jsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import React from "react";
import React, { useState } from "react";

function Board(props) {
let className = "board";
Expand All @@ -11,15 +11,21 @@ function Board(props) {

function BoardSwitcher(props) {
let boards = [];
const [currentBoard, setCurrentBoard] = useState(0);

const toggle = () => {
setCurrentBoard((currentBoard + 1) % props.numBoards);
}

for (let ii = 0; ii < props.numBoards; ii++) {
let isSelected = ii === 0;
let isSelected = ii === currentBoard;
boards.push(<Board index={ii} selected={isSelected} key={ii} />);
}

return (
<div>
<div className="boards">{boards}</div>
<button>Toggle</button>
<button onClick={toggle}>Toggle</button>
</div>
);
}
Expand Down
2 changes: 1 addition & 1 deletion src/main.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ import "./index.css";
const root = ReactDOM.createRoot(document.getElementById("root"));
root.render(
<React.StrictMode>
<BoardSwitcher numBoards={3} />
<BoardSwitcher numBoards={5} />
</React.StrictMode>
);