diff --git a/docs/ADAPTIVITY_GUIDE.md b/docs/ADAPTIVITY_GUIDE.md index 486e791b21..fa9fd405f2 100644 --- a/docs/ADAPTIVITY_GUIDE.md +++ b/docs/ADAPTIVITY_GUIDE.md @@ -32,8 +32,8 @@ import { useAdaptivity } from '../../hooks/useAdaptivity'; import styles from './Component.module.css'; const sizeXClassNames = { - none: styles['Component--sizeX-none'], // означает, что sizeX не определён в AdaptivityProvider – используем `@media` - compact: styles['Component--sizeX-compact'], + none: styles.hostSizeXNone, // означает, что sizeX не определён в AdaptivityProvider – используем `@media` + compact: styles.hostSizeXCompact, }; const Component = () => { @@ -42,7 +42,7 @@ const Component = () => { return (