Skip to content

Commit 3602cd2

Browse files
react - remove unused types
1 parent 03cb040 commit 3602cd2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

React/src/App.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import DataGrid, {
44
} from 'devextreme-react/data-grid';
55
import './App.css';
66
import ArrayStore from 'devextreme/data/array_store';
7-
import { DataSource, type DataSourceOptions } from 'devextreme-react/common/data';
7+
import { type DataSourceOptions } from 'devextreme-react/common/data';
88
import service, { type City, type Employee } from './data';
99
import MultipleDropDownBox from './components/MultipleDropDownBox';
1010

@@ -47,7 +47,7 @@ function renderMultipleDropDownBox(
4747
currentValue: number[],
4848
// eslint-disable-next-line no-unused-vars
4949
setValue: (value: number[]) => void,
50-
dataSource: ArrayStore | DataSource,
50+
dataSource: ArrayStore | DataSourceOptions,
5151
): JSX.Element {
5252
return (
5353
<MultipleDropDownBox

0 commit comments

Comments
 (0)