diff --git a/plugins/platformsh/README.md b/plugins/platformsh/README.md index fb0e84d..5107ada 100644 --- a/plugins/platformsh/README.md +++ b/plugins/platformsh/README.md @@ -80,17 +80,24 @@ To get the Platform.sh component working, follow these steps: To display the tab only for entities where `platform.sh/project-id: ` is available, the plugin provides a conditional export `isPlatformshAvailable`. - ```ts - // At the top imports - import { EntityPlatformshContents, isPlatformshAvailable } from '@axelerant/backstage-plugin-platformsh'; - - // Add the tab conditionally based on annotation availability - const serviceEntityPage = ( - - {/* other tabs... */} - - - - - ); - ``` +```ts +// At the top imports +import { + EntityPlatformshContents, + isPlatformshAvailable, +} from '@axelerant/backstage-plugin-platformsh'; + +// Add the tab conditionally based on annotation availability +const serviceEntityPage = ( + + {/* other tabs... */} + + + + +); +```