mirror of
https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2025-09-06 18:16:38 +08:00
9 lines
199 B
JavaScript
9 lines
199 B
JavaScript
import { Action } from '../Elements';
|
|
|
|
const ControlStaticValue = ( { value } ) => (
|
|
<Action>
|
|
<div className="ppcp--static-value">{ value }</div>
|
|
</Action>
|
|
);
|
|
|
|
export default ControlStaticValue;
|