@pega/custom-dx-components
Version:
Utility for building custom UI components
28 lines (26 loc) • 560 B
text/typescript
// Mock props satisfying CaseViewProps from @pega/cosmos-react-wss
const configProps = {
caseId: 'C-1001',
heading: 'My Wsscaseview',
summary: {
label: 'Summary',
content: 'Summary content goes here'
},
stages: {
label: 'Stages',
content: 'Stages content goes here'
},
tasks: {
label: 'Tasks',
content: 'Tasks content goes here'
},
feed: {
label: 'Feed',
content: 'Feed content goes here'
},
utility: {
label: 'Utilities',
content: 'Utilities content goes here'
}
};
export default configProps;