Last change
on this file since 785b8bd was 785b8bd, checked in by Mile Jankuloski <mile.jankuloski@…>, 4 years ago |
Dashboards v0.1
|
-
Property mode
set to
100644
|
File size:
521 bytes
|
Line | |
---|
1 | import { Component, OnInit, Input, ViewChild } from '@angular/core';
|
---|
2 | import { Pharmacy } from '../models/Pharmacy';
|
---|
3 | import { MatTableDataSource } from '@angular/material/table';
|
---|
4 | import { MatPaginator } from '@angular/material/paginator';
|
---|
5 | import { MatSort } from '@angular/material/sort';
|
---|
6 |
|
---|
7 | @Component({
|
---|
8 | selector: 'app-dashboard',
|
---|
9 | templateUrl: './dashboard.component.html',
|
---|
10 | styleUrls: ['./dashboard.component.css']
|
---|
11 | })
|
---|
12 | export class DashboardComponent implements OnInit {
|
---|
13 |
|
---|
14 | constructor() { }
|
---|
15 |
|
---|
16 | ngOnInit(): void { }
|
---|
17 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.