Files
bot-whatsapp/packages/docs/src/contexts/index.tsx
Leifer Mendez 2ecc41f3f0 chore: pre-chore
2023-02-04 18:03:57 +01:00

17 lines
355 B
TypeScript

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