feat(nc-gui): add useEeConfig shared composable

This commit is contained in:
Ramesh Mane
2025-04-04 15:04:33 +00:00
committed by mertmit
parent 6d6aa1b06b
commit b4dbf6a907

View File

@@ -0,0 +1,10 @@
export const useEeConfig = createSharedComposable(() => {
const getLimit = (..._args: any[]) => {}
const getFeature = (..._args: any[]) => {}
return {
getLimit,
getFeature,
}
})