-2

I would like to give each tab a different color. Similar to this except a different color for each tab.

Ozzy Walsh
  • 877
  • 9
  • 17

1 Answers1

1

I have found how to do this.

const panes = [
    {
      menuItem: {
        content: 'Tag 1',
        color: 'teal'
      },
      render: () => <MyComponent />}
  ];
Ozzy Walsh
  • 877
  • 9
  • 17