From 01cd4e2575463bf0ab6ae399067e8e91262e9c4a Mon Sep 17 00:00:00 2001 From: Philipp Hugenroth Date: Sat, 1 Apr 2023 18:36:59 +0200 Subject: [PATCH] Add changeset Signed-off-by: Philipp Hugenroth --- .changeset/yellow-candles-kiss.md | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .changeset/yellow-candles-kiss.md diff --git a/.changeset/yellow-candles-kiss.md b/.changeset/yellow-candles-kiss.md new file mode 100644 index 0000000000..e365be2a0a --- /dev/null +++ b/.changeset/yellow-candles-kiss.md @@ -0,0 +1,21 @@ +--- +'@backstage/core-components': minor +--- + +**BREAKING:** Removing `Tabs` component from `core-components` as it is neither used in the core Backstage app nor in the monorepo plugins. If you are using this component in your instance please consider replacing it with the [Material UI `Tabs`](https://v4.mui.com/components/tabs/#tabs) component like the following: + +```diff +- , +- content:
Label
, +- }]} +- /> + ++ ++ } ++ /> ++ +```