We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 068132f commit 99fbd5fCopy full SHA for 99fbd5f
coding-exercise/README.md
@@ -105,13 +105,14 @@ export default function Counter() {
105
countRef.current = countRef.current + 1;
106
}
107
108
- return
109
- <>
110
- <span>Count: {countRef.current}</span>
111
- <button onClick={handleIncrement}>
112
- Click me
113
- </button>
114
- </>
+ return (
+ <>
+ <span>Count: {countRef.current}</span>
+ <button onClick={handleIncrement}>
+ Click me
+ </button>
+ </>
115
+ )
116
117
```
118
0 commit comments