20 lines
357 B
TypeScript
20 lines
357 B
TypeScript
|
/**
|
||
|
* External dependencies
|
||
|
*/
|
||
|
import '@wordpress/element';
|
||
|
|
||
|
/**
|
||
|
* Internal dependencies
|
||
|
*/
|
||
|
import './settings-payments-offline.scss';
|
||
|
|
||
|
export const SettingsPaymentsOffline: React.FC = () => {
|
||
|
return (
|
||
|
<div className="settings-payments-offline__container">
|
||
|
<h1>Offline payments screen</h1>
|
||
|
</div>
|
||
|
);
|
||
|
};
|
||
|
|
||
|
export default SettingsPaymentsOffline;
|