diff --git a/plugins/harness-ccm/README.md b/plugins/harness-ccm/README.md index 5dd9e020..d4874178 100644 --- a/plugins/harness-ccm/README.md +++ b/plugins/harness-ccm/README.md @@ -61,9 +61,23 @@ import { Use the imported components to add the Harness CCM content to your entity page: ```tsx const ccmContent = ( - - +); +``` + +#### Add CCM to Entity Page +```tsx +const websiteEntityPage = ( + + + {overviewContent} + + {/* Add this route */} + + {ccmContent} + + {/* ... other routes ... */} + ); ```