react js tab code example
Example: horizontal tabs in react js
<Paper square>
<Tabs
value={value}
indicatorColor="primary"
textColor="primary"
onChange={handleChange}
aria-label="disabled tabs example"
>
<Tab label="Active" />
<Tab label="Disabled" />
<Tab label="Active" />
</Tabs>
</Paper>