Merge pull request #32822 from backstage/bui-full-page

BUI - Add new FullPage component
This commit is contained in:
Charles de Dreuille
2026-02-12 22:47:55 +00:00
committed by GitHub
14 changed files with 326 additions and 16 deletions
+14
View File
@@ -0,0 +1,14 @@
---
'@backstage/ui': patch
---
Added a new `FullPage` component that fills the remaining viewport height below the `Header`.
```tsx
<Header title="My Plugin" tabs={tabs} />
<FullPage>
{/* content fills remaining height */}
</FullPage>
```
**Affected components:** FullPage