Angular Materials Tab Groups not importing

I am trying to set up a mat-tab-group with angular materials. Errors: Compiled with problems: ERROR ../../app.module.ts:28:5 – error NG2011: The component ‘MatTab’ appears in ‘imports’, but is not standalone and cannot be imported directly. It must be imported via an NgModule. 28 MatTab, ~~~~~~ ERROR ../../app.module.ts:29:5 – error NG2011: The component ‘MatTabGroup’ appears in… Read More Angular Materials Tab Groups not importing

How to make script execute once the first script is loaded

I’m trying to make a web framework and one feature will be a key-value state management tool. I need the second <script> tag to only run after ./script.js loads in. index.html: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document</title> <script src="./framework.js"></script> </head> <body> <p f-text="name"></p> <script> Framework.store(‘name’, ‘Joe’); </script> </body> </html>… Read More How to make script execute once the first script is loaded