Merge pull request #32876 from backstage/rugvip/fix-fullpage-changeset-header-ref

ui: fix FullPage changeset to reference PluginHeader
This commit is contained in:
Patrik Oldsberg
2026-02-17 13:25:11 +01:00
committed by GitHub
+2 -2
View File
@@ -2,10 +2,10 @@
'@backstage/ui': patch
---
Added a new `FullPage` component that fills the remaining viewport height below the `Header`.
Added a new `FullPage` component that fills the remaining viewport height below the `PluginHeader`.
```tsx
<Header title="My Plugin" tabs={tabs} />
<PluginHeader title="My Plugin" tabs={tabs} />
<FullPage>
{/* content fills remaining height */}
</FullPage>