Commit 8653b3bf by Moorthy G

fix(storybook): update next/link mock

parent de7cfd02
/** Mock for next/link */
export default function ({ children }) {
return children;
export default function ({ children, ...rest }) {
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