From 74bb9d74382ed13ad86427a3728ff9c0201abdde Mon Sep 17 00:00:00 2001 From: Tobias Heim Galindo Date: Thu, 1 Aug 2024 10:45:52 +0200 Subject: [PATCH] fix code snippet md format --- packages/ui-patterns/README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/ui-patterns/README.md b/packages/ui-patterns/README.md index ea13c28883..58fce3807e 100644 --- a/packages/ui-patterns/README.md +++ b/packages/ui-patterns/README.md @@ -59,11 +59,11 @@ To begin contributing a new UI pattern: 5. Import the new pattern component and its HTML content at the beginning of the landing page pattern page: - ```js + ```js // landingpage/pages/library/patterns/index.tsx import { MyPatternA, myPatternAHtml } from '@inovex.de/ui-patterns'; - ``` - + ``` + - Add the pattern to the `PreviewBox` component, which will display the pattern and the highlighted code snippet: ```js