Christoph Burgdorf 4dffc41f3e docs(hierarchical-injectors): use real example code
closes #406

With this change the chapter doesn't use inline
code anymore but instead uses proper runnable
example code.
2015-11-25 20:04:00 -08:00

23 lines
541 B
HTML

<!DOCTYPE html>
<html>
<head>
<title>Hierarchical Injectors</title>
<script src="../node_modules/systemjs/dist/system.src.js"></script>
<script src="../node_modules/angular2/bundles/angular2.dev.js"></script>
<script>
System.config({
packages: {'app': {defaultExtension: 'js'}}
});
System.import('app/heroes-list.component');
</script>
</head>
<body>
<!-- #docregion heroes-list -->
<heroes-list>loading...</heroes-list>
<!-- #enddocregion heroes-list -->
</body>
</html>