Skip to content

Commit a4affca

Browse files
committed
Fix missing docs for PF4 dual list
1 parent b83cc6f commit a4affca

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

packages/react-renderer-demo/src/doc-components/dual-list-select.js

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,15 @@ import PropTypes from 'prop-types';
33
import MuiDualListSelect from './examples-texts/mui/mui-dual-list-select.md';
44
import SuirDualListSelect from './examples-texts/suir/suir-dual-list-select.md';
55
import BlueprintDualListSelect from './examples-texts/blueprint/blueprint-dual-list-select.md';
6+
import PF4DualListSelect from './examples-texts/pf4/pf4-dual-list.md';
7+
68
import GenericMuiComponent from '../helpers/generic-mui-component';
79

810
const DualListSelect = ({ activeMapper }) => {
11+
if (activeMapper === 'pf4') {
12+
return <PF4DualListSelect />;
13+
}
14+
915
if (activeMapper === 'mui') {
1016
return <MuiDualListSelect />;
1117
}

0 commit comments

Comments
 (0)