Skip to content

Commit

Permalink
chore: rename assets to css (#42)
Browse files Browse the repository at this point in the history
  • Loading branch information
orzyyyy authored Apr 9, 2019
1 parent 9167e62 commit 50a474d
Show file tree
Hide file tree
Showing 11 changed files with 5 additions and 6 deletions.
1 change: 0 additions & 1 deletion src/canvas/assets/canvas.css

This file was deleted.

File renamed without changes.
2 changes: 1 addition & 1 deletion src/demo/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import React, { Component } from 'react';
import Canvas from '../canvas';
import mapping from '../mock/mapping.json';
import Toolbar from '../tools';
import './assets/demo.css';
import './css/demo.css';

export interface CanvasPosition {
x: number;
Expand Down
2 changes: 1 addition & 1 deletion src/line/core.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import React, { PureComponent } from 'react';
import classNames from 'classnames';
import './assets/Line.css';
import './css/Line.css';

export interface LineProps {
x0: number;
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion src/tools/BlockGroup.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import classNames from 'classnames';
import Draggable from 'react-draggable';
import { generateKey, stopPropagation } from '../utils/LineUtil';
import omit from 'omit.js';
import './assets/BlockGroup.css';
import './css/BlockGroup.css';

// one Line is mapping to two Block
// to record it here
Expand Down
2 changes: 1 addition & 1 deletion src/tools/TagGroup.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import React, { Component } from 'react';
import classNames from 'classnames';
import Draggable from 'react-draggable';
import { Input } from 'antd';
import './assets/TagGroup.css';
import './css/TagGroup.css';
import { stopPropagation } from '../utils/LineUtil';

export interface TagGroupProps {
Expand Down
2 changes: 1 addition & 1 deletion src/tools/Toolbar.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import React, { Component } from 'react';
import { Icon } from 'antd';
import { tools } from '../options/tools';
import './assets/Toolbar.css';
import './css/Toolbar.css';

export default class Toolbar extends Component {
onDragStart = (e: any, item: any) => {
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit 50a474d

Please sign in to comment.