You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi Team, I think in the basic goPonents layout we have to add footer component, currently it's missing. FYI, by default, the footer behavior should be aligned in the bottom of the browser and based on the content or page it should be floated with bottom of the content, regarding this I will raise ticket in the GitHub.
You can see here, in the current basic layout, this much only is available...
Simple Setup
For the sake of this example, we'll be referencing the layout of this application because it's a living example of the entire layout component and family.
app.module
// Required imports for the layout:
import {
GoHeaderModule,
GoIconButtonModule,
GoLayoutModule,
GoSideNavModule
} from '@tangoe/goponents';
Hi Team, I think in the basic goPonents layout we have to add footer component, currently it's missing. FYI, by default, the footer behavior should be aligned in the bottom of the browser and based on the content or page it should be floated with bottom of the content, regarding this I will raise ticket in the GitHub.
You can see here, in the current basic layout, this much only is available...
Simple Setup
For the sake of this example, we'll be referencing the layout of this application because it's a living example of the entire layout component and family.
app.module
// Required imports for the layout:
import {
GoHeaderModule,
GoIconButtonModule,
GoLayoutModule,
GoSideNavModule
} from '@tangoe/goponents';
@NgModule({
declarations: [
AppComponent
],
imports: [
GoHeaderModule,
GoIconButtonModule,
GoLayoutModule,
GoSideNavModule
],
bootstrap: [AppComponent]
})
export class AppModule { }
app.component
The text was updated successfully, but these errors were encountered: