Javascript – Self-created <Tab/> component is not work with "&.Mui-selected"
I have created a custom <Tab/> and I would like to control its selected-color by using Sandbox demo code export const Tab = styled(MuiTab)({ "&.Mui-selected": { color: "red" } }); However, I found that: 1.apply the self-styled component directly =>…