I want to limit the number of rows per page in reactable from 10 to 5.
Here is a reproducible sample
set.seed(250)
df <- tibble(x = sample(x = 1:20))
reactable(df)
Right now, when you run this code, there are two pages of 10 rows each. I want four pages of 5 rows each.