Skip to content

Commit 9946b30

Browse files
committed
Move shapes into their own directory
1 parent 520cb2c commit 9946b30

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

src/js/CheckboxTree.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@ import nanoid from 'nanoid';
66

77
import Button from './Button';
88
import TreeNode from './TreeNode';
9-
import iconsShape from './iconsShape';
10-
import languageShape from './languageShape';
11-
import listShape from './listShape';
12-
import nodeShape from './nodeShape';
9+
import iconsShape from './shapes/iconsShape';
10+
import languageShape from './shapes/languageShape';
11+
import listShape from './shapes/listShape';
12+
import nodeShape from './shapes/nodeShape';
1313

1414
class CheckboxTree extends React.Component {
1515
static propTypes = {

src/js/TreeNode.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ import React from 'react';
44

55
import Button from './Button';
66
import NativeCheckbox from './NativeCheckbox';
7-
import iconsShape from './iconsShape';
8-
import languageShape from './languageShape';
9-
import nodeShape from './nodeShape';
7+
import iconsShape from './shapes/iconsShape';
8+
import languageShape from './shapes/languageShape';
9+
import nodeShape from './shapes/nodeShape';
1010

1111
class TreeNode extends React.Component {
1212
static propTypes = {
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)