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