From 1549e1f3e3302ecda92ddce089f613ab9810637c Mon Sep 17 00:00:00 2001 From: ZeeshanTamboli Date: Sat, 10 Aug 2024 11:40:05 +0530 Subject: [PATCH] remove link to wrapping components section in composition guide --- docs/data/material/components/tooltips/tooltips.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/docs/data/material/components/tooltips/tooltips.md b/docs/data/material/components/tooltips/tooltips.md index 4cedae5a300099..2b60f71e1e1dc4 100644 --- a/docs/data/material/components/tooltips/tooltips.md +++ b/docs/data/material/components/tooltips/tooltips.md @@ -71,8 +71,6 @@ const MyComponent = React.forwardRef(function MyComponent(props, ref) { ; ``` -You can find a similar concept in the [wrapping components](/material-ui/guides/composition/#wrapping-components) guide. - If using a class component as a child, you'll also need to ensure that the ref is forwarded to the underlying DOM element. (A ref to the class component itself will not work.) ```jsx