import React from 'react'; import { translate } from '../../../translate/translate'; import { connect } from 'react-redux'; class FiatCurrencyPanel extends React.Component { constructor() { super(); } render() { return (

Fiat currency settings section to be updated soon.

); }; } const mapStateToProps = (state) => { return { Settings: state.Settings, }; }; export default connect(mapStateToProps)(FiatCurrencyPanel);