2.5.2
- Use
styled-components
in combination withcustomElements
likeLink
:
const MyLink = styled("Link")`
color: red;
`;
return (
<MyLink href="/my/page">
Click Me!
</MyLink>
);
styled-components
in combination with customElements
like Link
:const MyLink = styled("Link")`
color: red;
`;
return (
<MyLink href="/my/page">
Click Me!
</MyLink>
);