mirror of
https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2025-09-07 19:54:15 +08:00
8 lines
233 B
JavaScript
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>;
|
|
}
|