Header
pg-header
First import it to your app module or any submodule as you wish
import { HeaderComponent } from './@pages/components/header/header.component';
@NgModule({
declarations: [HeaderComponent,...]
})
export class AppModule(){}
HTML
<pg-header [boxed]="_boxed">
<!-- YOUR HEADER CONTENT GOES HERE -->
</pg-header>
Property | Description | Type | Default |
boxed | Wraps content with a container div | boolean | false |
Last modified 5yr ago