Table, Filter, Pagination components
This story can be splitted into three parts:
All of this part can be done separately. This is true for table component. (I'm sure)
Table component
- It must receive as a props a
- data (list of entries (e.g. enrolment list)
- config for header
- There also should be a possibility to show/hide a column.
schema for header can be found here

- It must be reusable (could be applied to any entiry)
After this SIRTING (orderBy) need to be implemented
Filter component
- It must receive as a props
- options for filters
- function that will dispath action type
FILTER CHANGED
Pagination components
- It must receive as a props
- count of entries
- items per page
- function that will send an action:
{ type: "PAGE_CHANGED", payload: {count, currentPage }

Table, Filter, Pagination components
This story can be splitted into three parts:
All of this part can be done separately. This is true for table component. (I'm sure)
Table component
schema for header can be found here
After this SIRTING (orderBy) need to be implemented
Filter component
FILTER CHANGEDPagination components