Skip to content

Commit dd8d1be

Browse files
committed
change(document): fix syntax error in ItemList component example
1 parent 1e4e4ad commit dd8d1be

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

document/07-frontend.en.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ Debugging is the process of checking the operation of a program, identifying pro
8282
By inserting `console.debug()` at the points in the code where you want to check the operation, you can verify the values and states at runtime. For example, in `ItemList.tsx`:
8383

8484
```typescript
85-
export const ItemList: = (props: Prop) => {
85+
export const ItemList = (props: Prop) => {
8686
...
8787
useEffect(() => {
8888
const fetchData = () => {

0 commit comments

Comments
 (0)