Skip to content

Commit

Permalink
Remove blank lines. Add import in PlainCssButtonDeep.
Browse files Browse the repository at this point in the history
  • Loading branch information
weisk committed May 3, 2020
1 parent 6be0938 commit 5f8d81d
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions docs/src/pages/guides/interoperability/interoperability.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,7 @@ Nothing fancy, just plain CSS.
```jsx
import React from 'react';
import Button from '@material-ui/core/Button';

import "./PlainCSSButton.css";
import './PlainCSSButton.css';

export default function PlainCssButton() {
return (
Expand Down Expand Up @@ -95,6 +94,7 @@ The following example overrides the `label` style of `Button` in addition to the
```jsx
import React from 'react';
import Button from '@material-ui/core/Button';
import './PlainCssButtonDeep.css';

export default function PlainCssButtonDeep() {
return (
Expand Down Expand Up @@ -134,7 +134,6 @@ Explicitly providing the class names to the component is too much effort?
```jsx
import React from 'react';
import Button from '@material-ui/core/Button';

import './GlobalCssButton.css';

export default function GlobalCssButton() {
Expand Down

0 comments on commit 5f8d81d

Please sign in to comment.