mirror of
https://github.com/nocodb/nocodb.git
synced 2026-05-02 04:37:20 +00:00
* fix: get rid of barrel files * chore: get rid of explicit imports * fix: use explicit import for classes and enums * fix: use explicit import for enum & class & aliases * fix: build issues
8 lines
149 B
TypeScript
8 lines
149 B
TypeScript
export const useCopySharedBase = createSharedComposable(() => {
|
|
const sharedBaseId = ref<string | null>(null)
|
|
|
|
return {
|
|
sharedBaseId,
|
|
}
|
|
})
|