feat(client): redesigned navigation (#40709)

Co-authored-by: moT01 <20648924+moT01@users.noreply.github.com>
This commit is contained in:
Nicholas Carrigan (he/him)
2021-01-27 12:34:29 -08:00
committed by Mrugesh Mohapatra
parent 9014fff6c4
commit 58c6c54c67
17 changed files with 470 additions and 288 deletions

View File

@@ -7,7 +7,7 @@ const themeKey = 'fcc-theme';
const defaultTheme = 'default';
const nightTheme = 'night';
function setTheme(currentTheme = defaultTheme, theme) {
export function setTheme(currentTheme = defaultTheme, theme) {
if (currentTheme !== theme) {
store.set(themeKey, theme);
}