From 575477a1901d3dbd4c84d8320bad5a0201b6c589 Mon Sep 17 00:00:00 2001 From: Isaev Alexandr Date: Wed, 24 Apr 2024 18:42:40 +0300 Subject: [PATCH] fix(layout): update layout docs (#1550) --- 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 } }; - + {...} ```