From 139d02eb9b52ef1046483e526e03ea75d1f093dd Mon Sep 17 00:00:00 2001 From: p-sw Date: Fri, 14 Jun 2024 23:29:06 +0900 Subject: [PATCH] feat(react-lib): add index.ts file This commit creates a new index.ts file in the react/lib package. It exports from 'vcn' and 'Slot' modules, optimizing the package for component and slot usage. --- packages/react/lib/index.ts | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 packages/react/lib/index.ts diff --git a/packages/react/lib/index.ts b/packages/react/lib/index.ts new file mode 100644 index 0000000..faba6d8 --- /dev/null +++ b/packages/react/lib/index.ts @@ -0,0 +1,2 @@ +export * from "./vcn"; +export * from "./Slot";