Initial Project Structure
The structure, well is very different from what an Angular project looks.

Different but Same...
It all starts with the index.html, which connects the global app.js and .css and the body bootstraps the app-root component.
<script nomodule src="/build/app.js"></script>
<link href="/build/app.css" rel="stylesheet">
<app-root></app-root>
app-root - sets up the routing ( if needed - More on that in the Routing page. ) Or simply is the root of the component tree.
This is very similar to, how things are with Angular. main.ts - which bootstraps a module - which identifies a bootstrap component for this module - https://angular.io/guide/bootstrapping#the-bootstrap-array
## h2
Let's start with creating a new Component.
Last updated
Was this helpful?