From f6f64ce77339c1fa3c6ee03ccf3580aa0994ce24 Mon Sep 17 00:00:00 2001 From: arshad Date: Sun, 24 Dec 2023 11:10:05 +0530 Subject: [PATCH] Update: Rename 'ResizableGroup' to 'ResizablePanelGroup' in Documentation (#2166) ### Overview This pull request updates the documentation to reflect the correct component name, changing `ResizableGroup` to `ResizablePanelGroup`. This change ensures consistency and correctness in the documentation, aiding developers in correctly implementing the component. ### Changes Made - In the code examples within the documentation, `ResizableGroup` has been renamed to `ResizablePanelGroup`. - This change is applied to both horizontal and vertical orientation examples. ### Additional Information - These changes are confined to documentation and do not alter the actual implementation or functionality of the components in question. Please review the changes for accuracy and merge if appropriate. Thanks! --- apps/www/content/docs/components/resizable.mdx | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/apps/www/content/docs/components/resizable.mdx b/apps/www/content/docs/components/resizable.mdx index af3ec56853..46e263320c 100644 --- a/apps/www/content/docs/components/resizable.mdx +++ b/apps/www/content/docs/components/resizable.mdx @@ -62,11 +62,11 @@ import { ``` ```tsx - + One Two - + ``` ## Examples @@ -86,11 +86,11 @@ import { export default function Example() { return ( - + One Two - + ) } ``` @@ -110,11 +110,11 @@ import { export default function Example() { return ( - + One Two - + ) } ```