14 lines
411 B
TypeScript
14 lines
411 B
TypeScript
import { Component } from '@angular/core';
|
|
import { MatListModule } from '@angular/material/list';
|
|
import { SimpleLayout } from '../../../components/simple-layout/simple-layout';
|
|
import { RouterOutlet } from '@angular/router';
|
|
|
|
|
|
@Component({
|
|
selector: 'app-chains',
|
|
imports: [MatListModule, SimpleLayout, RouterOutlet],
|
|
templateUrl: './chains.html',
|
|
styleUrl: './chains.scss',
|
|
})
|
|
export class Chains {}
|