In my app.js file, I import someComponent.js. This someComponent.js file then imports someStyles.css. However, app.js will only use or render someComponent.js when a button is clicked.
So, the question arises: When will the user's browser load and apply someStyles.css? Will it load right away when the page loads, regardless of whether the button is pressed, or will it wait to request and load the CSS file until the component is actually rendered?