mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-23 10:30:04 +01:00
17 lines
363 B
JavaScript
17 lines
363 B
JavaScript
import React from 'react';
|
|
|
|
import Box from '../../../ui/box';
|
|
import BaseFeeInput from './base-fee-input';
|
|
import PriorityFeeInput from './priority-fee-input';
|
|
|
|
const AdvancedGasFeeInputs = () => {
|
|
return (
|
|
<Box className="advanced-gas-fee-inputs">
|
|
<BaseFeeInput />
|
|
<PriorityFeeInput />
|
|
</Box>
|
|
);
|
|
};
|
|
|
|
export default AdvancedGasFeeInputs;
|