From a94d5e09de076782bbda557adcab1fbadd05b5fc Mon Sep 17 00:00:00 2001 From: Olivier Tassinari Date: Wed, 31 Jan 2024 09:08:09 +0100 Subject: [PATCH] =?UTF-8?q?docs:=20Polish=20reference=20to=20Material?= =?UTF-8?q?=C2=A0UI.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Polish reference to Material UI. --- docs/framework/react/guides/ui-libraries.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/docs/framework/react/guides/ui-libraries.md b/docs/framework/react/guides/ui-libraries.md index 0cf8b825a..27a2ee626 100644 --- a/docs/framework/react/guides/ui-libraries.md +++ b/docs/framework/react/guides/ui-libraries.md @@ -5,15 +5,15 @@ title: UI Libraries # Usage of TanStack Form with UI Libraries -TanStack Form is a headless library, offering you complete flexibility to style it as you see fit. It's compatible with a wide range of UI libraries, including `Tailwind`, `Material-UI`, `Mantine`, or even plain CSS. +TanStack Form is a headless library, offering you complete flexibility to style it as you see fit. It's compatible with a wide range of UI libraries, including `Tailwind`, `Material UI`, `Mantine`, or even plain CSS. -This guide focuses on `Material-UI` and `Mantine`, but the concepts are applicable to any UI library of your choice. +This guide focuses on `Material UI` and `Mantine`, but the concepts are applicable to any UI library of your choice. ## Prerequisites Before integrating TanStack Form with a UI library, ensure the necessary dependencies are installed in your project: -- For `Material-UI`, follow the installation instructions on their [official site](https://mui.com/material-ui/getting-started/). +- For `Material UI`, follow the installation instructions on their [official site](https://mui.com/material-ui/getting-started/). - For `Mantine`, refer to their [documentation](https://mantine.dev/). Note: While you can mix and match libraries, it's generally advisable to stick with one to maintain consistency and minimize bloat. @@ -87,9 +87,9 @@ export default function App() { - By following these steps, you can seamlessly integrate Mantine components with TanStack Form. - This methodology is equally applicable to other components, such as `Checkbox`, ensuring consistent integration across different UI elements. -## Usage with `Material-UI` +## Usage with Material UI -The process for integrating Material-UI components is similar. Here's an example using TextField and Checkbox from Material-UI: +The process for integrating Material UI components is similar. Here's an example using TextField and Checkbox from Material UI: ```tsx