Theme

welaundry theme에 대한 적용 방식과 예시를 설명합니다.

Global theme state

const localTheme = themeStorage.get();

export const themeState = atom<boolean>({
  key: 'theme',
  default: !!localTheme,
});

Theme Provider & Theme button

App

ThemeButton

Last updated