Skip to content

2.5.2

Compare
Choose a tag to compare
@calebjacob calebjacob released this 25 Oct 20:55
· 61 commits to master since this release
9fe2d4e
  • Use styled-components in combination with customElements like Link:
const MyLink = styled("Link")`
  color: red;
`;

return (
  <MyLink href="/my/page">
    Click Me!
  </MyLink>
);