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
No known key found for this signature in database
GPG key ID: 24837C51B6D81FD9
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 {
}
}