Skip to content

Commit

Permalink
Use correct package for importing useState in BoxControl examples (#2…
Browse files Browse the repository at this point in the history
  • Loading branch information
ocean90 authored Jun 18, 2020
1 parent 8e185c9 commit ad34192
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/components/src/box-control/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ BoxControl components let users set values for Top, Right, Bottom, and Left. Thi

```jsx
import { __experimentalBoxControl as BoxControl } from '@wordpress/components';
import { useState } from '@wordpress/compose';
import { useState } from '@wordpress/element';

const Example = () => {
const [ values, setValues ] = useState( {
Expand All @@ -31,7 +31,7 @@ BoxControl provides a companion component that visually renders value changes. P

```jsx
import { __experimentalBoxControl as BoxControl } from '@wordpress/components';
import { useState } from '@wordpress/compose';
import { useState } from '@wordpress/element';

import MyComponent from './my-component';

Expand Down Expand Up @@ -63,7 +63,7 @@ Alternatively, the `<Visualizer>` can be nested as a sibling to the component yo

```jsx
import { __experimentalBoxControl as BoxControl } from '@wordpress/components';
import { useState } from '@wordpress/compose';
import { useState } from '@wordpress/element';

import MyComponent from './my-component';

Expand Down

0 comments on commit ad34192

Please sign in to comment.