chore: Sync package version v1.16.0

This commit is contained in:
Bot DocuBook
2025-08-10 12:04:53 +00:00
parent e192899446
commit 2bca9eb28e
6 changed files with 56 additions and 8 deletions

View File

@@ -0,0 +1,4 @@
import { createContext } from 'react';
// Create a context to check if a component is inside an accordion group
export const AccordionGroupContext = createContext<{ inGroup: boolean } | null>(null);