This commit is contained in:
patrick.lafrance 2019-12-02 18:07:28 -05:00
parent 38a034d683
commit f26a37654a

View File

@ -71,7 +71,6 @@ interface AnchorMdxProps {
href: string;
}
// TODO: use A from html components
export const AnchorMdx: React.FC<AnchorMdxProps> = ({ href, children, ...rest }) => {
if (href.startsWith('#')) {
return <AnchorInPage href={href}>{children}</AnchorInPage>;