@bodynarf/react.components 1.4.22 → 1.4.23

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/readme.md +1 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bodynarf/react.components",
3
- "version": "1.4.22",
3
+ "version": "1.4.23",
4
4
  "author": {
5
5
  "name": "Artem",
6
6
  "email": "bodynar@gmail.com"
package/readme.md CHANGED
@@ -35,6 +35,7 @@ Simple react components based on html elements.
35
35
  Complex components is set of components built via combining simple components or represent complex logical component
36
36
  - **Search** - Search bar with optional button to perform search
37
37
  - **Paginator** - Pagination elements to navigate through paged list
38
+
38
39
  Example:
39
40
  ```tsx
40
41
  const [{ currentPage, pagesCount, onPageChange }, paginate] = usePagination(items.length, ITEMS_PER_PAGE);