Skip to content

Commit 97a9b1f

Browse files
committed
types(*) missing
1 parent 617c70b commit 97a9b1f

File tree

6 files changed

+9
-3
lines changed

6 files changed

+9
-3
lines changed

.storybook/stories/Server/Features/tree.story.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import React from 'react';
1+
import * as React from 'react';
22
import { storiesOf } from '@storybook/react';
33

44
import {

.storybook/stories/Types/select.story.mdx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,10 @@ import { Meta } from '@storybook/addon-docs/blocks';
55
# Select
66

77
```javascript
8+
import * as React from 'react';
9+
810
import { State, IdReducerFunctions } from '@table-library/react-table-library/types/common';
911
import { TableNode, GetRowProps } from '@table-library/react-table-library/types/table';
10-
import React from 'react';
1112

1213
export enum SelectClickTypes {
1314
RowClick,

src/select/useRowSelect.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
import * as React from 'react';
12
import cs from 'clsx';
23

34
import * as COLORS from '@table-library/react-table-library/common/colors';

src/table/Row/useDoubleClick.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
import * as React from 'react';
12
import useDoubleClickBase from 'use-double-click';
23

34
import { TableNode, OnClick } from '@table-library/react-table-library/types/table';

src/types/layout.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
import * as React from 'react';
2+
13
// external
24

35
export type Layout = {

src/types/select.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
1+
import * as React from 'react';
2+
13
import { State, IdReducerFunctions } from '@table-library/react-table-library/types/common';
24
import { TableNode, GetRowProps } from '@table-library/react-table-library/types/table';
3-
import React from 'react';
45

56
export enum SelectClickTypes {
67
RowClick,

0 commit comments

Comments
 (0)