Fix typos

This commit is contained in:
palewire 2023-04-02 13:59:35 -04:00
parent 61b0b5c91c
commit da03ab87a8

View file

@ -1,4 +1,4 @@
When you table has lots of rows you should consider breaking it up into pages. This can be done by setting the `paginated` option.
When your table has lots of rows you should consider breaking it up into pages. This can be done by setting the `paginated` option.
When it is enabled, readers can leaf through the data using a set of buttons below the table. By default there are 25 records per page. You can change the number by adjusting the `pageSize` option.
@ -8,6 +8,7 @@ This is a good option when publishing large tables for readers to explore. It wo
<Table
data="{yourData}"
paginated="{true}"
title="{'Press Freedom Index'}"
source="{'<a href='https://en.wikipedia.org/wiki/Press_Freedom_Index'>Reporters Without Borders</a>'}"
/>
```