chore(zustand): replace default export by named expor
This commit is contained in:
parent
53b1e0f61c
commit
43612cb78f
4 changed files with 4 additions and 4 deletions
|
@ -1,4 +1,4 @@
|
|||
import create from 'zustand';
|
||||
import { create } from 'zustand';
|
||||
import { AppCategory } from '../../../core/types';
|
||||
import { SortableColumns } from '../helpers/table.types';
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
import create from 'zustand';
|
||||
import { create } from 'zustand';
|
||||
|
||||
const SYSTEM_STATUS = {
|
||||
RUNNING: 'RUNNING',
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
import create from 'zustand';
|
||||
import { create } from 'zustand';
|
||||
|
||||
export type IToast = {
|
||||
id: string;
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
import create from 'zustand';
|
||||
import { create } from 'zustand';
|
||||
|
||||
type UIStore = {
|
||||
menuItem: string;
|
||||
|
|
Loading…
Reference in a new issue