diff --git a/docs/src/docs/core/Menu.mdx b/docs/src/docs/core/Menu.mdx index 691d7c34da3..21d32c6b6d5 100644 --- a/docs/src/docs/core/Menu.mdx +++ b/docs/src/docs/core/Menu.mdx @@ -68,36 +68,6 @@ By default, `Menu.Item` renders as button element, to change that set `component -## Menu.Item with react-router Link - -```tsx -import { Menu } from '@mantine/core'; -import { Link } from 'react-router-dom'; - -function Demo() { - return ( - - Hello - - ); -} -``` - -## Menu.Item as Next.js Link - -```tsx -import { Menu } from '@mantine/core'; -import { NextLink } from '@mantine/next'; - -function Demo() { - return ( - - Hello - - ); -} -``` - ## Custom component as target