10 lines
240 B
JavaScript
10 lines
240 B
JavaScript
|
/**
|
||
|
* External dependencies
|
||
|
*/
|
||
|
import useCheckoutContext from '@woocommerce/base-context/checkout-context';
|
||
|
|
||
|
export const useCheckoutPlaceOrderLabel = () => {
|
||
|
const { placeOrderLabel } = useCheckoutContext();
|
||
|
return placeOrderLabel;
|
||
|
};
|