samling 0.13.1

App for managing apparel collections
Documentation
1
2
3
4
5
6
7
8
9
10
11
import React from "react";
import { Link, LinkProps } from "react-router-dom";
import { dummyLink } from "../utils";

interface DummyLinkProps extends Omit<LinkProps, "to"> {}

const DummyLink = React.forwardRef((props: DummyLinkProps, ref) => {
  return <Link to={dummyLink()} ref={ref as any} {...props} />;
});

export default DummyLink;