added settings

This commit is contained in:
Isaac Grynsztein
2020-03-05 21:24:29 -05:00
parent a755b0b281
commit 09bcac1c14
5 changed files with 53 additions and 1 deletions

View File

@@ -0,0 +1,24 @@
import { Component, OnInit } from '@angular/core';
import { PostsService } from 'app/posts.services';
@Component({
selector: 'app-settings',
templateUrl: './settings.component.html',
styleUrls: ['./settings.component.scss']
})
export class SettingsComponent implements OnInit {
constructor(private postsService: PostsService) { }
ngOnInit() {
}
getConfig() {
}
setSetting() {
}
}