mirror of
https://github.com/nocodb/nocodb.git
synced 2026-04-29 02:56:49 +00:00
10 lines
205 B
TypeScript
10 lines
205 B
TypeScript
import { createSharedComposable, ref } from '#imports'
|
|
|
|
export const useCopySharedBase = createSharedComposable(() => {
|
|
const sharedBaseId = ref<string | null>(null)
|
|
|
|
return {
|
|
sharedBaseId,
|
|
}
|
|
})
|