chore(zustand): replace default export by named expor

This commit is contained in:
Nicolas Meienberger 2023-03-26 00:16:25 +01:00
parent 20baa4e5e1
commit cb5b5fc43a
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;