We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2ae42a9 commit 44ac28cCopy full SHA for 44ac28c
plugins/harness-ccm/README.md
@@ -61,9 +61,23 @@ import {
61
Use the imported components to add the Harness CCM content to your entity page:
62
```tsx
63
const ccmContent = (
64
- <EntitySwitch.Case if={isHarnessCcmAvailable}>
65
<EntityCcmContent />
66
- </EntitySwitch.Case>
+);
+```
67
+
68
+#### Example for using ccmContent
69
+```tsx
70
+const websiteEntityPage = (
71
+ <EntityLayout>
72
+ <EntityLayout.Route path="/" title="Overview">
73
+ {overviewContent}
74
+ </EntityLayout.Route>
75
+ {/* Add this route */}
76
+ <EntityLayout.Route path="/ccm" title="Cloud Cost Management">
77
+ {ccmContent}
78
79
+ {/* ... other routes ... */}
80
+ </EntityLayout>
81
);
82
```
83
0 commit comments