Renamed classes to match components file names

This commit is contained in:
Alejandro Celaya
2018-07-28 09:20:51 +02:00
parent ce22b7e8e9
commit e10028a2b9
3 changed files with 7 additions and 7 deletions

View File

@@ -5,7 +5,7 @@ import { isEmpty } from 'ramda';
import React from 'react';
import { connect } from 'react-redux';
import Tag from '../utils/Tag';
import { Row } from './helpers/ShortUrlsRow';
import { ShortUrlsRow } from './helpers/ShortUrlsRow';
import { listShortUrls } from './reducers/shortUrlsList';
import './ShortUrlsList.scss';
@@ -109,7 +109,7 @@ export class ShortUrlsList extends React.Component {
}
return shortUrlsList.map(shortUrl => (
<Row shortUrl={shortUrl} selectedServer={selectedServer} key={shortUrl.shortCode} />
<ShortUrlsRow shortUrl={shortUrl} selectedServer={selectedServer} key={shortUrl.shortCode} />
));
}