Warning: React does not recognize the `isActive` prop on a DOM element. If you intentionally want it to appear in the DOM as a custom attribute, spell it as lowercase `isactive` instead. If you accidentally passed it from a parent component, remove it from the DOM element.
It works if you add $ as decorator.
Ex:
const Container = styled.div' color: ${({ $isactive }) => ($isactive ? "white" : "gray")}; ';
And from container:
<Container $isactive={!!user}>
Hello, I found the following error implemented the Tabs, my code is as follows:
React Version:
Can you help me?