diff --git a/src/content/learn/thinking-in-react.md b/src/content/learn/thinking-in-react.md index 31de98623..2f9cf20c2 100644 --- a/src/content/learn/thinking-in-react.md +++ b/src/content/learn/thinking-in-react.md @@ -105,8 +105,13 @@ title: تفکر به سبک ری‌اکت +<<<<<<< HEAD +```jsx App.js +function ProductCategoryRow({category}) { +======= ```jsx src/App.js function ProductCategoryRow({ category }) { +>>>>>>> 315cb7a38a1645623fc55501429285ab680b8a6a return ( {category} @@ -337,8 +342,13 @@ function FilterableProductTable({ products }) { +<<<<<<< HEAD +```jsx App.js +import {useState} from 'react'; +======= ```jsx src/App.js import { useState } from 'react'; +>>>>>>> 315cb7a38a1645623fc55501429285ab680b8a6a function FilterableProductTable({products}) { const [filterText, setFilterText] = useState(''); @@ -540,8 +550,13 @@ function SearchBar({ +<<<<<<< HEAD +```jsx App.js +import {useState} from 'react'; +======= ```jsx src/App.js import { useState } from 'react'; +>>>>>>> 315cb7a38a1645623fc55501429285ab680b8a6a function FilterableProductTable({products}) { const [filterText, setFilterText] = useState('');