Skip to content

Commit 6914959

Browse files
committed
fix: website pt 2
1 parent 95cb249 commit 6914959

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

website/sandbox/App.js

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import React from 'react';
2+
// eslint-disable-next-line import/no-unresolved
23
import SortableTree, { toggleExpandedForAll } from 'react-sortable-tree';
34

45
import treeData from './treeData';

website/sandbox/index.js

+2-4
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,8 @@ import React from 'react';
22
import ReactDOM from 'react-dom';
33
import App from './App';
44

5-
import './styles.css';
6-
import '../../src/react-sortable-tree.css';
7-
import '../../src/node-renderer-default.css';
8-
import '../../src/tree-node.css';
5+
// eslint-disable-next-line import/no-unresolved
6+
import 'react-sortable-tree/style.css';
97

108
const rootElement = document.getElementById('root');
119
ReactDOM.render(<App />, rootElement);

0 commit comments

Comments
 (0)