Skip to content

Commit 3803ddf

Browse files
committed
rename story book
1 parent a1c07f1 commit 3803ddf

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

packages/core/src/docs/examples/selection-gridlines.stories.tsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -36,12 +36,12 @@ export default {
3636
],
3737
};
3838

39-
interface GridLineDemoProps {
39+
interface SelectionGridLineProps {
4040
columnSelectionGridLines: boolean;
4141
rowSelectionGridLines: boolean;
4242
}
4343

44-
export const GridLineDemo: React.FC<GridLineDemoProps> = p => {
44+
export const SelectionGridLine: React.FC<SelectionGridLineProps> = p => {
4545
const { cols, getCellContent } = useMockDataGenerator(10);
4646

4747
return (
@@ -57,12 +57,12 @@ export const GridLineDemo: React.FC<GridLineDemoProps> = p => {
5757
);
5858
};
5959

60-
(GridLineDemo as any).args = {
60+
(SelectionGridLine as any).args = {
6161
columnSelectionGridLines: true,
6262
rowSelectionGridLines: true,
6363
};
6464

65-
(GridLineDemo as any).argTypes = {
65+
(SelectionGridLine as any).argTypes = {
6666
columnSelectionGridLines: {
6767
control: {
6868
type: "boolean",

0 commit comments

Comments
 (0)