Skip to content
This repository has been archived by the owner on Jan 13, 2025. It is now read-only.

Commit

Permalink
docs: Update MCW package README Destructuring Format (#4551)
Browse files Browse the repository at this point in the history
Updated the MCW package README destructuring format by removing spaces around symbol and brace as per the readme-standards.md

Fixes #4550

(cherry picked from commit 797ebc8)
  • Loading branch information
ALMaclaine authored and abhiomkar committed Apr 8, 2019
1 parent f648b2d commit fe74ea3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/material-components-web/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ npm install material-components-web
import * as mdc from 'material-components-web';
const checkbox = new mdc.checkbox.MDCCheckbox(document.querySelector('.mdc-checkbox'));
// OR
import { checkbox } from 'material-components-web';
import {checkbox} from 'material-components-web';
const checkbox = new checkbox.MDCCheckbox(document.querySelector('.mdc-checkbox'));
```

Expand Down

0 comments on commit fe74ea3

Please sign in to comment.