Fix Zustand imports

This commit is contained in:
ajnart
2023-02-11 08:58:09 +09:00
parent 023e44f523
commit 4f652c71ba
5 changed files with 14 additions and 4 deletions

View File

@@ -1,4 +1,4 @@
import create from 'zustand';
import { create } from 'zustand';
interface EditModeState {
enabled: boolean;

View File

@@ -1,5 +1,5 @@
import { useMantineTheme } from '@mantine/core';
import create from 'zustand';
import { create } from 'zustand';
import { useConfigContext } from '../../../../config/provider';
import { GridstackBreakpoints } from '../../../../constants/gridstack-breakpoints';