moved currencies to constants folder
This commit is contained in:
parent
ccc14b5d45
commit
9c5cd1b267
|
@ -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 {
|
||||
|
|
|
@ -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) {
|
||||
|
|
Loading…
Reference in New Issue