import { Injectable } from '@angular/core';
@Injectable({
providedIn: 'root'
})
export class ThemeService {
themes = [
'gov',
'default'
]
currentTheme = 'gov'
constructor() { }
setTheme() {}
}