From f8d52cafc786382e2c85f446f047b363518d7a0b Mon Sep 17 00:00:00 2001 From: Alican Erdurmaz Date: Wed, 21 Feb 2024 09:43:25 +0300 Subject: [PATCH] chore(docs): revert code style changes --- documentation/blog/2022-05-05-open-source-headless-cms.md | 2 ++ documentation/blog/2022-09-02-sveltekit-crud-app.md | 1 + .../docs/ui-integrations/material-ui/introduction/index.md | 6 +++++- 3 files changed, 8 insertions(+), 1 deletion(-) diff --git a/documentation/blog/2022-05-05-open-source-headless-cms.md b/documentation/blog/2022-05-05-open-source-headless-cms.md index 40525978a78e..cb35140090be 100644 --- a/documentation/blog/2022-05-05-open-source-headless-cms.md +++ b/documentation/blog/2022-05-05-open-source-headless-cms.md @@ -56,6 +56,7 @@ Build flexible and faster web projects using [Netlify](https://www.netlifycms.or netlify + It is designed as a one-page React app; so you can add UI widgets, editor plugins and backends to support various Git platform APIs. ### Ghost @@ -78,6 +79,7 @@ Refine comes with Ant Design and can also be used headless if you prefer. refine + ### Conclusion Headless CMS systems offer a modern and efficient approach to creating and distributing content across multiple channels with high performance, flexibility, scalability and a host of useful features. diff --git a/documentation/blog/2022-09-02-sveltekit-crud-app.md b/documentation/blog/2022-09-02-sveltekit-crud-app.md index 6a483352ace0..ea83bf499643 100644 --- a/documentation/blog/2022-09-02-sveltekit-crud-app.md +++ b/documentation/blog/2022-09-02-sveltekit-crud-app.md @@ -52,6 +52,7 @@ The above command will prompt you to select the configurations for your project. terminal + Now change the directory into the project folder and install the required dependencies with the command below. ```shell diff --git a/documentation/docs/ui-integrations/material-ui/introduction/index.md b/documentation/docs/ui-integrations/material-ui/introduction/index.md index 3ba059dcedbd..1ca166efb892 100644 --- a/documentation/docs/ui-integrations/material-ui/introduction/index.md +++ b/documentation/docs/ui-integrations/material-ui/introduction/index.md @@ -157,7 +157,11 @@ import { Refine } from "@refinedev/core"; import { useNotificationProvider } from "@refinedev/mui"; const App = () => { - return {/* ... */}; + return ( + + {/* ... */} + + ); }; ```