diff --git a/packages/tabs/README.md b/packages/tabs/README.md index c9ad0f26b..97ad114f0 100644 --- a/packages/tabs/README.md +++ b/packages/tabs/README.md @@ -84,6 +84,35 @@ export const slotsOrder = () => html` `; ``` +### Nesting tabs + +You can include tabs within tabs + +```js preview-story +export const nestedTabs = () => html` + + + +
+

Find some more info about our favorite movies:

+ + + +

+ Cars is a 2006 American computer-animated comedy film produced by Pixar Animation Studios + and released by Walt Disney Pictures. +

+

+ The feature film directorial debut of John Lasseter, it was the first entirely + computer-animated feature film, as well as the first feature film from Pixar. +

+
+
+

Work page that showcases our work.

+
+`; +``` + ### Distribute New Elements Below, we demonstrate on how you could dynamically add new tab + panels.