<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>UdemyApp</title>
<app-settings></app-settings>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<link id="styleUrl" rel="stylesheet" href="https://bootswatch.com/4/superhero/bootstrap.min.css">
<base href="/">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" type="image/x-icon" href="favicon.ico">
</head>
<body>
<app-root>
</app-root>
</body>
</html>
I would like for the app-settings component to show. It has some script and links is all.
If that isn't possible, I would like to know how to add another component to the index.html file. Like the following:
<body>
<app-settings><app-settings>
<app-root></app-root>
</body>