# Create multiple tabs in a panel

**URL:** https://forums.creativeclouddeveloper.com/t/create-multiple-tabs-in-a-panel/3114
**Category:** UXP Plugin API
**Tags:** react, ui
**Created:** [June 17, 2021, 6:40pm UTC](https://forums.creativeclouddeveloper.com/t/create-multiple-tabs-in-a-panel/3114 "2021-06-17T18:40:07Z")
**Posts on this page:** 2
**Page:** 1

<div class="post-metadata">

### Author: ![alex1](https://avatars.discourse-cdn.com/v4/letter/a/898d66/32.png) [@alex1](https://forums.creativeclouddeveloper.com/u/alex1)
#### Post date: [June 17, 2021, 6:40pm UTC](https://forums.creativeclouddeveloper.com/t/create-multiple-tabs-in-a-panel/3114/1 "2021-06-17T18:40:07Z")

</div>

How do I create multiple tabs in a panel? I’ve tried editing the manifest.json, but I can’t get it right or find anything that mentions this in the docs. Will they have to be different panels? If so, is it possible to have them load in one panel with tabs? I’m using react if that makes a difference. Here is an example that I’d like to recreate that have the tabs for one plugin.

 ![Screen Shot 2021-06-17 at 12.38.11 PM](https://us1.discourse-cdn.com/flex015/uploads/xdplugins/original/2X/1/199d9a4dbb480ae9f2fec6c3153590a0e3f23424.png)

---

<div class="post-metadata">

### Author: ![kerrishotts](https://sea1.discourse-cdn.com/flex015/user_avatar/forums.creativeclouddeveloper.com/kerrishotts/32/8_2.png) [@kerrishotts](https://forums.creativeclouddeveloper.com/u/kerrishotts)
#### Post date: [June 17, 2021, 8:02pm UTC](https://forums.creativeclouddeveloper.com/t/create-multiple-tabs-in-a-panel/3114/2 "2021-06-17T20:02:40Z")

</div>

It really depends on what you’re after. If you just want to show tabs (but not have each tab be separately dockable), then you can do that using any number of patterns. If you want each tab to _be_ a panel with full dockability, then each tab needs to be a separate panel entry point.

Your plugin can have as many panels as you like, but note that there’s _currently_ no way to group them, meaning that the user would have to manage the grouping themselves.

If you just want tabs that can’t be undocked, the ui-kitchen-sink sample shows this off.

 ![image](https://us1.discourse-cdn.com/flex015/uploads/xdplugins/original/2X/6/601ffe8cd28debf8f5d740fc1b3abede5809a011.png)

> <https://github.com/AdobeDocs/uxp-photoshop-plugin-samples/blob/main/ui-kitchen-sink/index.html>

Note that this does require some JS to work.
