Separate docs-nav into new component

Since same markup will be needed for desktop
and mobile menus.
This commit is contained in:
hunicus
2021-12-16 19:11:54 -05:00
parent e01ab449cf
commit 958bfe6d25
6 changed files with 101 additions and 83 deletions

View File

@@ -0,0 +1,17 @@
import { Component, OnInit, Input } from '@angular/core';
@Component({
selector: 'app-api-docs-nav',
templateUrl: './api-docs-nav.component.html',
styleUrls: ['./api-docs-nav.component.scss']
})
export class ApiDocsNavComponent implements OnInit {
@Input() network: any;
constructor() { }
ngOnInit(): void {
}
}