From 6debd053f3277da192f7f51215fe8ab7a38e8067 Mon Sep 17 00:00:00 2001 From: emyarod Date: Tue, 6 Apr 2021 13:44:19 -0500 Subject: [PATCH] docs(DataTable): remove example form inputs --- .../components/DataTable/stories/shared.js | 42 ------------------- 1 file changed, 42 deletions(-) diff --git a/packages/react/src/components/DataTable/stories/shared.js b/packages/react/src/components/DataTable/stories/shared.js index 89e659bec2bf..13d857147eee 100644 --- a/packages/react/src/components/DataTable/stories/shared.js +++ b/packages/react/src/components/DataTable/stories/shared.js @@ -7,8 +7,6 @@ import React from 'react'; import { action } from '@storybook/addon-actions'; import Link from '../../Link'; -import Select from '../../Select'; -import SelectItem from '../../SelectItem'; export const rows = [ { @@ -19,12 +17,6 @@ export const rows = [ rule: 'Round robin', attached_groups: 'Kevin’s VM Groups', status: Disabled, - foo: ( - - ), }, { id: 'b', @@ -34,12 +26,6 @@ export const rows = [ rule: 'Round robin', attached_groups: 'Maureen’s VM Groups', status: Starting, - foo: ( - - ), }, { id: 'c', @@ -49,12 +35,6 @@ export const rows = [ rule: 'DNS delegation', attached_groups: 'Andrew’s VM Groups', status: Active, - foo: ( - - ), }, { id: 'd', @@ -64,12 +44,6 @@ export const rows = [ rule: 'Round robin', attached_groups: 'Marc’s VM Groups', status: Disabled, - foo: ( - - ), }, { id: 'e', @@ -79,12 +53,6 @@ export const rows = [ rule: 'Round robin', attached_groups: 'Mel’s VM Groups', status: Starting, - foo: ( - - ), }, { id: 'f', @@ -94,12 +62,6 @@ export const rows = [ rule: 'DNS delegation', attached_groups: 'Ronja’s VM Groups', status: Active, - foo: ( - - ), }, ]; @@ -128,10 +90,6 @@ export const headers = [ key: 'status', header: 'Status', }, - { - key: 'foo', - header: 'foo', - }, ]; export const batchActionClick = (selectedRows) => () =>