diff --git a/stories/index.tsx b/stories/index.tsx
index fbe503ce..e0309dc3 100644
--- a/stories/index.tsx
+++ b/stories/index.tsx
@@ -797,6 +797,29 @@ storiesOf('Griddle main', module)
)
})
+ .add('with virtual scrolling and tall rows', () => {
+ const data = [];
+ for (let i = 0; i < 100; i++) {
+ data.push({
+ name: 'asdasd asdasd asdasd '.repeat(4 + 3 * Math.random()),
+ age: 18 + Math.floor(Math.random() * 70),
+ active: 'false',
+ action: 'action',
+ address: 'asdasd asdasd asdasd '.repeat(6 + 2 * Math.random()),
+ });
+ }
+ return (
+
+
+
+
+
+
+
+
+
+ )
+ })
.add('set fakeData to constructed Objects', () => {
type Griddle = new () => GenericGriddle;
const Griddle = GenericGriddle as Griddle;