mirror of
https://github.com/bitwarden/browser
synced 2025-12-16 08:13:42 +00:00
settings modal
This commit is contained in:
29
src/app/accounts/settings.component.ts
Normal file
29
src/app/accounts/settings.component.ts
Normal file
@@ -0,0 +1,29 @@
|
||||
import * as template from './settings.component.html';
|
||||
|
||||
import {
|
||||
Component,
|
||||
OnInit,
|
||||
} from '@angular/core';
|
||||
|
||||
import { ToasterService } from 'angular2-toaster';
|
||||
import { Angulartics2 } from 'angulartics2';
|
||||
|
||||
import { I18nService } from 'jslib/abstractions/i18n.service';
|
||||
import { PlatformUtilsService } from 'jslib/abstractions/platformUtils.service';
|
||||
|
||||
@Component({
|
||||
selector: 'app-settings',
|
||||
template: template,
|
||||
})
|
||||
export class SettingsComponent implements OnInit {
|
||||
constructor(private analytics: Angulartics2, private toasterService: ToasterService,
|
||||
private i18nService: I18nService, private platformUtilsService: PlatformUtilsService) { }
|
||||
|
||||
ngOnInit() {
|
||||
|
||||
}
|
||||
|
||||
submit() {
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user