Advertisement
kwandes

Angular Nebular component html

Dec 16th, 2020
405
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. //app.component.html
  2. <nb-layout>
  3.   <nb-layout-header fixed> Oribi App </nb-layout-header>
  4.  
  5.   <nb-sidebar>
  6.     <nb-menu [items]="items"></nb-menu>
  7.   </nb-sidebar>
  8.  
  9.   <nb-layout-column>
  10.     <router-outlet></router-outlet>
  11.   </nb-layout-column>
  12.  
  13.   <nb-layout-footer fixed>
  14.     Copyright 2020 and other footer stuff
  15.   </nb-layout-footer>
  16. </nb-layout>
  17.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement