We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3b2ac8b commit 5f38273Copy full SHA for 5f38273
packages/module/src/DataView/DataView.tsx
@@ -1,5 +1,5 @@
1
import React from 'react';
2
-import { Stack, StackItem } from '@patternfly/react-core';
+import { Stack, StackItem, StackProps } from '@patternfly/react-core';
3
import { DataViewSelection, InternalContextProvider } from '../InternalContext';
4
5
export const DataViewState = {
@@ -10,7 +10,8 @@ export const DataViewState = {
10
11
export type DataViewState = typeof DataViewState[keyof typeof DataViewState];
12
13
-export interface DataViewProps {
+/** extends StackProps */
14
+export interface DataViewProps extends StackProps {
15
/** Content rendered inside the data view */
16
children: React.ReactNode;
17
/** Custom OUIA ID */
0 commit comments