mirror of
https://github.com/mempool/mempool.git
synced 2026-08-18 13:08:44 +02:00
Separate docs-nav into new component
Since same markup will be needed for desktop and mobile menus.
This commit is contained in:
parent
e01ab449cf
commit
958bfe6d25
6 changed files with 101 additions and 83 deletions
17
frontend/src/app/components/docs/api-docs-nav.component.ts
Normal file
17
frontend/src/app/components/docs/api-docs-nav.component.ts
Normal 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 {
|
||||
}
|
||||
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue