From 80de2b7965b4ba0431f1d173baeb591ab0d535fb Mon Sep 17 00:00:00 2001 From: Andre Wanlin Date: Thu, 9 Sep 2021 08:25:17 -0500 Subject: [PATCH] Updated changeset to minor and added migration instructions Signed-off-by: Andre Wanlin --- .changeset/late-mangos-allow.md | 27 +++++++++++++++++++++++++-- 1 file changed, 25 insertions(+), 2 deletions(-) diff --git a/.changeset/late-mangos-allow.md b/.changeset/late-mangos-allow.md index 82a180c836..e1e4fe1d56 100644 --- a/.changeset/late-mangos-allow.md +++ b/.changeset/late-mangos-allow.md @@ -1,5 +1,28 @@ --- -'@backstage/plugin-home': patch +'@backstage/plugin-home': minor --- -Added the HomepageTimer to the new composable Home Page +The homepage `
` is now part of the composable canvas (allowing you to add the , for example). + +You will need to wrap your existing composed `` component in ``, `
`, and `` components, like this: + +```diff +// app/src/components/home/HomePage.tsx + ++ import { Content, Header, Page, HomePageTimer } from '@backstage/core-components'; + +export const HomePage = () => ( ++ ++
++ ++
++ + + + + + // ... ++ ++
+); +```