import React from "react";
import { DataEditorAll as DataEditor } from "../../data-editor-all.js";
import { BeautifulWrapper, Description, useMockDataGenerator, defaultProps } from "../../data-editor/stories/utils.js";
import { SimpleThemeWrapper } from "../../stories/story-utils.js";
export default {
title: "Glide-Data-Grid/DataEditor Demos",
decorators: [
(Story: React.ComponentType) => (
100 million rows is silly. Once we cross about 33 million pixels in height we can no longer
trust the browser to scroll accurately.
}>
),
],
};
export const SillyNumbers: React.VFC = () => {
const { cols, getCellContent } = useMockDataGenerator(6);
return (
);
};