mirror of
https://gitlab.com/mbugroup/lti-web-client.git
synced 2026-05-20 13:32:00 +00:00
13 lines
246 B
TypeScript
13 lines
246 B
TypeScript
'use client';
|
|
|
|
import { create } from 'zustand';
|
|
import { devtools } from 'zustand/middleware';
|
|
|
|
import { UIStore } from '@/types/stores';
|
|
|
|
export const useUiStore = create<UIStore>()(
|
|
devtools((...args) => ({}), {
|
|
name: 'UIStore',
|
|
})
|
|
);
|