Revize 357658f9
Přidáno uživatelem Václav Honzík před asi 3 roky(ů)
frontend/src/features/Catalog/Catalog.tsx | ||
---|---|---|
1 |
import { useEffect, useState } from 'react' |
|
2 |
import { CatalogDto } from '../../swagger/data-contracts' |
|
1 | 3 |
|
2 | 4 |
const Catalog = () => { |
5 |
// List of all catalog items |
|
6 |
const [catalogItems, setCatalogItems] = useState<CatalogDto[]>([]) |
|
7 |
|
|
8 |
// Whether the request has been processed |
|
9 |
const [isLoading, setIsLoading] = useState(true) |
|
10 |
|
|
11 |
useEffect(() => { |
|
12 |
|
|
13 |
}, [isLoading]) |
|
3 | 14 |
|
4 | 15 |
return ( |
5 | 16 |
<> |
... | ... | |
8 | 19 |
) |
9 | 20 |
} |
10 | 21 |
|
11 |
export default Catalog |
|
22 |
export default Catalog |
Také k dispozici: Unified diff
Catalog page init re #9130