国产av日韩一区二区三区精品,成人性爱视频在线观看,国产,欧美,日韩,一区,www.成色av久久成人,2222eeee成人天堂

???? 3?? ???? ???? ?? ?? ??? ??????
P粉928591383
P粉928591383 2024-04-06 13:51:32
0
1
861

React?? ?? ??? ????? ? ?? ??? ??? ????. ? ?? ? ???? ????? ???? ? ?? ??? ????. ? ? ?? ??? ??? ??? ????? ???. ??? ?? ???? ?? ????? ??? ?? ???? ? ?? ??? ???? ???. ? ??? ???? ??? ??? ??????

import { create } from 'zustand'
import { devtools, persist, createJSONStorage } from 'zustand/middleware'
import { BackgroundVariant as Background } from 'reactflow';

function nextBackground(background: Background): Background {
  switch (background) {
    case Background.Dots:
      return Background.Cross;
    case Background.Cross:
      return Background.Lines;
    default:
      return Background.Dots;
  };
};

interface MenuState {
  background: Background;
  toggleBackground: () => void;
}

export const useMenuStore = create<MenuState>()(
  devtools(
    persist(
      (set) => ({
        background: Background.Dots,
        toggleBackground: () => set((state) => ({
          background: nextBackground(state.background)
        }))
      }),
      {
        name: 'menu-storage',
        storage: createJSONStorage(() => localStorage),
      }
    )
  )
);

P粉928591383
P粉928591383

?? ??(1)
P粉801904089

??? ?? ???? ???? ?? ?? ????? ??? ?? ?? ? ?? ?? ???? ??? ????.

???