diff --git a/modules/ppcp-settings/resources/js/App.js b/modules/ppcp-settings/resources/js/App.js index c88ad1546..5a555a0a9 100644 --- a/modules/ppcp-settings/resources/js/App.js +++ b/modules/ppcp-settings/resources/js/App.js @@ -1,3 +1,8 @@ +import * as Store from './data'; + export function App() { - return
App
; + // We need to "use" the Store variable, to prevent webpack from tree-shaking it. + console.log( 'Store ready:', Store ); + + return
App with Store
; }