Advertisement
Guest User

Untitled

a guest
May 31st, 2016
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.68 KB | None | 0 0
  1. import { bootstrap } from '@angular/platform-browser-dynamic';
  2.  
  3. import { Navigation } from './components/nav.component';
  4.  
  5. bootstrap(Navigation);
  6.  
  7. import {Component} from '@angular/core';
  8.  
  9. @Component({
  10. selector: 'my-app',
  11. template: '<h1>Angular 2 is present</h1>'
  12. })
  13.  
  14. export class Navigation {
  15.  
  16. }
  17.  
  18. node
  19. node_modules
  20. src
  21. -> main
  22. -> webapp
  23. - index.html
  24. -> node_modules
  25. -> app
  26. - main.d.ts
  27. - main.js
  28. - main.js.map
  29. - main.ts
  30. -> components
  31. - nav.component.js.map
  32. - nav.component.d.ts
  33. - nav.component.ts
  34. - nav.component.js
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement