woocommerce-paypal-payments/modules/ppcp-settings/resources/js/App.js

9 lines
127 B
JavaScript
Raw Normal View History

2024-10-24 13:54:50 +02:00
import Settings from './Components/Screens/Settings';
2024-10-18 17:17:07 +02:00
export function App() {
2024-10-23 08:56:47 +02:00
return (
<div>
2024-10-24 13:54:50 +02:00
<Settings />
2024-10-23 08:56:47 +02:00
</div>
);
2024-10-18 17:17:07 +02:00
}