From 333cc254aa379827026addafd479af0cedd5a39a Mon Sep 17 00:00:00 2001 From: Alexandr Isaev Date: Wed, 24 Apr 2024 16:16:03 +0300 Subject: [PATCH] fix(layout): update layout docs --- src/components/layout/LayoutProvider/__stories__/Layout.mdx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/components/layout/LayoutProvider/__stories__/Layout.mdx b/src/components/layout/LayoutProvider/__stories__/Layout.mdx index 3306d2eaf4..e25eadbd8b 100644 --- a/src/components/layout/LayoutProvider/__stories__/Layout.mdx +++ b/src/components/layout/LayoutProvider/__stories__/Layout.mdx @@ -76,13 +76,13 @@ _You can override default values on project level:_ ```tsx import {ThemeProvider, LayoutTheme} from '@gravity-ui/uikit'; -const theme: LayoutTheme = { +const config: LayoutTheme = { spaceBaseSize: 5, }; export const App = () => { return ( - + {...} ); @@ -138,7 +138,7 @@ We use `mobile-first` approach. It means that you should adapt you app to deskto } }; - + {...} ```