mirror of
https://gitlab.com/mbugroup/lti-web-client.git
synced 2026-05-22 14:25:47 +00:00
init
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
'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',
|
||||
})
|
||||
);
|
||||
Reference in New Issue
Block a user