chore(zustand): replace default export by named expor

This commit is contained in:
Nicolas Meienberger 2023-03-26 00:16:25 +01:00 committed by Nicolas Meienberger
parent 53b1e0f61c
commit 43612cb78f
4 changed files with 4 additions and 4 deletions

View file

@ -1,4 +1,4 @@
import create from 'zustand';
import { create } from 'zustand';
import { AppCategory } from '../../../core/types';
import { SortableColumns } from '../helpers/table.types';

View file

@ -1,4 +1,4 @@
import create from 'zustand';
import { create } from 'zustand';
const SYSTEM_STATUS = {
RUNNING: 'RUNNING',

View file

@ -1,4 +1,4 @@
import create from 'zustand';
import { create } from 'zustand';
export type IToast = {
id: string;

View file

@ -1,4 +1,4 @@
import create from 'zustand';
import { create } from 'zustand';
type UIStore = {
menuItem: string;