🚧 Test integration of the Redux store in the app

This commit is contained in:
Philipp Stracker 2024-10-22 15:16:23 +02:00
parent fc6d05ac37
commit 8520406794
No known key found for this signature in database

View file

@ -1,3 +1,8 @@
import * as Store from './data';
export function App() {
return <div className="red">App</div>;
// 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>;
}