You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
558 B
27 lines
558 B
import React from 'react';
|
|
import { translate } from '../../../translate/translate';
|
|
import { connect } from 'react-redux';
|
|
|
|
class FiatCurrencyPanel extends React.Component {
|
|
constructor() {
|
|
super();
|
|
}
|
|
|
|
render() {
|
|
return (
|
|
<div className="row">
|
|
<div className="col-sm-12">
|
|
<p>Fiat currency settings section to be updated soon.</p>
|
|
</div>
|
|
</div>
|
|
);
|
|
};
|
|
}
|
|
|
|
const mapStateToProps = (state) => {
|
|
return {
|
|
Settings: state.Settings,
|
|
};
|
|
};
|
|
|
|
export default connect(mapStateToProps)(FiatCurrencyPanel);
|