We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e9eb2df commit 2da40dcCopy full SHA for 2da40dc
docs/src/pages/components/css-baseline/css-baseline.md
@@ -32,16 +32,20 @@ It's possible to apply the baseline only to the children by using the `ScopedCss
32
```jsx
33
import React from 'react';
34
import ScopedCssBaseline from '@material-ui/core/ScopedCssBaseline';
35
+import MyApp from './MyApp';
36
37
export default function MyApp() {
38
return (
39
<ScopedCssBaseline>
40
{/* The rest of your application */}
41
+ <MyApp />
42
</ScopedCssBaseline>
43
);
44
}
45
```
46
47
+⚠️ Make sure you import `ScopedCssBaseline` first to avoid box-sizing conflicts as in the above example.
48
+
49
## Approach
50
51
### Page
0 commit comments