Updated classNames constant in components that werent using

• Updated:
- classNames constant in components that werent using
This commit is contained in:
mgabdev
2020-08-18 19:39:06 -05:00
parent 99982c0391
commit 2f4700e89f
23 changed files with 64 additions and 112 deletions

View File

@@ -1,13 +1,11 @@
import React from 'react'
import PropTypes from 'prop-types'
import { defineMessages, injectIntl } from 'react-intl'
import classNames from 'classnames/bind'
import { CX } from '../../constants'
import Button from '../button'
import Block from '../block'
import Heading from '../heading'
const cx = classNames.bind(_s)
class ModalLayout extends React.PureComponent {
onHandleCloseModal = () => {
@@ -25,7 +23,7 @@ class ModalLayout extends React.PureComponent {
isXS,
} = this.props
const childrenContainerClasses = cx({
const childrenContainerClasses = CX({
d: 1,
maxH80VH: 1,
overflowYScroll: 1,