Skip to content

Commit

Permalink
Remove classNames library from components
Browse files Browse the repository at this point in the history
  • Loading branch information
mertsincan committed Mar 30, 2021
1 parent 643efae commit 3184974
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/components/inputswitch/InputSwitch.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import React, {Component} from 'react';
import PropTypes from 'prop-types';
import classNames from 'classnames'
import { classNames } from '../utils/ClassNames';
import { tip } from '../tooltip/Tooltip';
import ObjectUtils from '../utils/ObjectUtils';

Expand Down
2 changes: 1 addition & 1 deletion src/components/orderlist/OrderList.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import {OrderListControls} from './OrderListControls';
import {OrderListSubList} from './OrderListSubList';
import DomHandler from '../utils/DomHandler';
import ObjectUtils from '../utils/ObjectUtils';
import classNames from 'classnames'
import { classNames } from '../utils/ClassNames';

export class OrderList extends Component {

Expand Down
2 changes: 1 addition & 1 deletion src/components/slider/Slider.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import React, { Component } from 'react'
import PropTypes from 'prop-types';
import DomHandler from '../utils/DomHandler';
import classNames from 'classnames'
import { classNames } from '../utils/ClassNames';

export class Slider extends Component {

Expand Down

0 comments on commit 3184974

Please sign in to comment.