Skip to content

Commit

Permalink
Merge remote-tracking branch 'upstream/sync-3563d95e' into review-sync
Browse files Browse the repository at this point in the history
  • Loading branch information
Abolfazl2647 committed Feb 18, 2024
2 parents 9f43f00 + d13dfb0 commit a110b2b
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions src/content/learn/thinking-in-react.md
Original file line number Diff line number Diff line change
Expand Up @@ -105,8 +105,13 @@ title: تفکر به سبک ری‌اکت

<Sandpack>

<<<<<<< HEAD
```jsx App.js
function ProductCategoryRow({category}) {
=======
```jsx src/App.js
function ProductCategoryRow({ category }) {
>>>>>>> 3563d95efe8719bdae8bbd258e6ab4134753348b
return (
<tr>
<th colSpan="2">{category}</th>
Expand Down Expand Up @@ -337,8 +342,13 @@ function FilterableProductTable({ products }) {
<Sandpack>
<<<<<<< HEAD
```jsx App.js
import {useState} from 'react';
=======
```jsx src/App.js
import { useState } from 'react';
>>>>>>> 3563d95efe8719bdae8bbd258e6ab4134753348b
function FilterableProductTable({products}) {
const [filterText, setFilterText] = useState('');
Expand Down Expand Up @@ -540,8 +550,13 @@ function SearchBar({
<Sandpack>
<<<<<<< HEAD
```jsx App.js
import {useState} from 'react';
=======
```jsx src/App.js
import { useState } from 'react';
>>>>>>> 3563d95efe8719bdae8bbd258e6ab4134753348b
function FilterableProductTable({products}) {
const [filterText, setFilterText] = useState('');
Expand Down

0 comments on commit a110b2b

Please sign in to comment.