moved currencies to constants folder

This commit is contained in:
Richard Ramos 2019-06-13 14:09:42 -04:00
parent ccc14b5d45
commit 9c5cd1b267
3 changed files with 2 additions and 2 deletions

View File

@ -3,7 +3,7 @@ import cc from 'cryptocompare';
import { FETCH_PRICES, FETCH_PRICES_SUCCEEDED, FETCH_PRICES_FAILED, FETCH_EXCHANGE_RATE } from './constants';
import network from "../../features/network";
import merge from 'merge';
import {CURRENCY_DATA} from "../../utils/currencies";
import {CURRENCY_DATA} from "../../constants/currencies";
export function *doFetchPrices(action) {
try {

View File

@ -6,7 +6,7 @@ import {connect} from 'react-redux';
import FiatSelectorForm from "./components/FiatSelectorForm";
import Loading from '../../../components/Loading';
import newSeller from "../../../features/newSeller";
import {CURRENCY_DATA} from "../../../utils/currencies";
import {CURRENCY_DATA} from "../../../constants/currencies";
class Currency extends Component {
constructor(props) {