@bento/listbox 0.2.1 → 0.2.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -26,7 +26,6 @@ The following properties are available on the `ListBox` component:
26
26
 
27
27
  ```tsx
28
28
  /* v8 ignore next */
29
- import React from 'react';
30
29
  import { ListBox, ListBoxItem } from '@bento/listbox';
31
30
  import style from './listbox.module.css';
32
31
 
@@ -56,7 +55,6 @@ The `<Header>` component accepts standard DOM props and a `slot` prop for Bento
56
55
 
57
56
  ```tsx
58
57
  /* v8 ignore next */
59
- import React from 'react';
60
58
  import { ListBox, ListBoxItem, ListBoxSection, Header } from '@bento/listbox';
61
59
  import style from './listbox.module.css';
62
60
 
@@ -94,7 +92,6 @@ When you provide an `items` prop, the `children` function receives **individual
94
92
 
95
93
  ```tsx
96
94
  /* v8 ignore next */
97
- import React from 'react';
98
95
  import { ListBox, ListBoxItem } from '@bento/listbox';
99
96
  import style from './listbox.module.css';
100
97
 
@@ -143,7 +140,6 @@ You can also render nested data inside a section using the exported `Collection`
143
140
 
144
141
  ```tsx
145
142
  /* v8 ignore next */
146
- import React from 'react';
147
143
  import { ListBox, ListBoxItem } from '@bento/listbox';
148
144
  import style from './listbox.module.css';
149
145