woocommerce-paypal-payments/modules/ppcp-settings/resources/js/App.js
2024-10-22 15:16:23 +02:00

8 lines
233 B
JavaScript

import * as Store from './data';
export function App() {
// We need to "use" the Store variable, to prevent webpack from tree-shaking it.
console.log( 'Store ready:', Store );
return <div className="red">App with Store</div>;
}