|
1 | 1 | import React from 'react'; |
2 | 2 | import { createRoot } from 'react-dom/client'; |
3 | 3 |
|
4 | | -import BasicExample from './js/BasicExample'; |
5 | | -import CustomIconsExample from './js/CustomIconsExample'; |
6 | | -import ClickableLabelsExample from './js/ClickableLabelsExample'; |
7 | | -import DisabledExample from './js/DisabledExample'; |
8 | | -import ExpandAllExample from './js/ExpandAllExample'; |
9 | | -import HiddenCheckboxesExample from './js/HiddenCheckboxesExample'; |
10 | | -import NoCascadeExample from './js/NoCascadeExample'; |
11 | | -import LargeDataExample from './js/LargeDataExample'; |
12 | | -import PessimisticToggleExample from './js/PessimisticToggleExample'; |
13 | | -import FilterExample from './js/FilterExample'; |
| 4 | +import BasicExample from './js/BasicExample.jsx'; |
| 5 | +import CustomIconsExample from './js/CustomIconsExample.jsx'; |
| 6 | +import ClickableLabelsExample from './js/ClickableLabelsExample.jsx'; |
| 7 | +import DisabledExample from './js/DisabledExample.jsx'; |
| 8 | +import ExpandAllExample from './js/ExpandAllExample.jsx'; |
| 9 | +import HiddenCheckboxesExample from './js/HiddenCheckboxesExample.jsx'; |
| 10 | +import NoCascadeExample from './js/NoCascadeExample.jsx'; |
| 11 | +import LargeDataExample from './js/LargeDataExample.jsx'; |
| 12 | +import PessimisticToggleExample from './js/PessimisticToggleExample.jsx'; |
| 13 | +import FilterExample from './js/FilterExample.jsx'; |
14 | 14 |
|
15 | 15 | createRoot(document.getElementById('basic-example')).render(<BasicExample />); |
16 | 16 | createRoot(document.getElementById('custom-icons-example')).render(<CustomIconsExample />); |
|
0 commit comments