'How to skip one Tab in MUI

Is it possible to skip one position in MUI Tabs using ReactJS?

<Tabs
    value={value}
    onChange={handleChange}
    textColor="secondary"
    indicatorColor="secondary"
    aria-label="secondary tabs example"
  >
    <Tab value={0} label="Page 1" />
    <Tab value={1} label="Page 2" />
    <Tab value={null} label="Add Content" />
    <Tab value={2} label="Page 3" />
    <Tab value={2} label="Page 4" />
  </Tabs>


Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source