mirror of
https://github.com/Microsoft/sql-server-samples.git
synced 2025-12-08 14:58:54 +00:00
27 lines
715 B
HTML
27 lines
715 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<base href="/">
|
|
<title>Angular 2 Tour of Heroes</title>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
<link rel="stylesheet" href="styles.css">
|
|
|
|
<!-- Polyfill(s) for older browsers -->
|
|
<script src="libs/core-js/shim.min.js"></script>
|
|
<script src="libs/zone.js/zone.js"></script>
|
|
<script src="libs/reflect-metadata/reflect.js"></script>
|
|
<script src="libs/systemjs/system.src.js"></script>
|
|
<!-- 2. Configure SystemJS -->
|
|
<script src="systemjs.config.js"></script>
|
|
<script>
|
|
System.import('app').catch(function(err){ console.error(err); });
|
|
</script>
|
|
</head>
|
|
|
|
<body>
|
|
<my-app>Loading...</my-app>
|
|
</body>
|
|
|
|
</html>
|