diff --git a/packages/react/src/components/DataTable/stories/default.js b/packages/react/src/components/DataTable/stories/default.js deleted file mode 100644 index 868135218496..000000000000 --- a/packages/react/src/components/DataTable/stories/default.js +++ /dev/null @@ -1,63 +0,0 @@ -/** - * Copyright IBM Corp. 2016, 2018 - * - * This source code is licensed under the Apache-2.0 license found in the - * LICENSE file in the root directory of this source tree. - */ - -import React from 'react'; - -import DataTable, { - Table, - TableBody, - TableCell, - TableContainer, - TableHead, - TableHeader, - TableRow, -} from '../../DataTable'; -import { initialRows, headers } from './shared'; - -const DefaultStory = (props) => ( - ( - - - - - {headers.map((header, i) => ( - - {header.header} - - ))} - - - - {rows.map((row, i) => ( - - {row.cells.map((cell) => ( - {cell.value} - ))} - - ))} - -
-
- )} - /> -); - -export default DefaultStory;