v3/.storybook/mocks/next_link.tsx

8 lines
158 B
TypeScript

import * as React from 'react';
type Props = {
children: React.ReactNode;
};
const Link = (props: Props) => <>{props.children}</>;
export default Link;