Files
bot-whatsapp/packages/docs/src/contexts/index.tsx
Leifer Mendez e4ed904a8b docs: updated
2022-12-25 20:53:25 +01:00

11 lines
255 B
TypeScript

import { createContext } from '@builder.io/qwik'
export interface DocumentationCtx {
title: string
link?: string
list: { link: string; name: string }[]
}
export const GlobalStore =
createContext<DocumentationCtx[]>('documentation-site')