Commit 8653b3bf by Moorthy G

fix(storybook): update next/link mock

parent de7cfd02
/** Mock for next/link */ /** Mock for next/link */
export default function ({ children }) { export default function ({ children, ...rest }) {
return children; return <a {...rest}>{children}</a>;
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment