Updated components, style modules

This commit is contained in:
mgabdev
2019-08-13 11:54:29 -04:00
parent ecd081b5ed
commit c58d621daf
57 changed files with 1263 additions and 1205 deletions

View File

@@ -1,8 +1,11 @@
import Immutable from 'immutable';
import ImmutablePropTypes from 'react-immutable-proptypes';
import ImmutablePureComponent from 'react-immutable-pure-component';
import punycode from 'punycode';
import classnames from 'classnames';
import Icon from '../../../components/icon';
import Icon from '../../../../components/icon';
import './card.scss';
const IDNA_PREFIX = 'xn--';
@@ -52,7 +55,7 @@ const addAutoPlay = html => {
return html;
};
export default class Card extends PureComponent {
export default class Card extends ImmutablePureComponent {
static propTypes = {
card: ImmutablePropTypes.map,

View File

@@ -0,0 +1 @@
export { default } from './card';