docs: added contributors

This commit is contained in:
Leifer Mendez
2022-12-28 10:21:10 +01:00
parent edf45774ba
commit 8b3c02d027
4 changed files with 49 additions and 31 deletions

View File

@@ -6,5 +6,12 @@ export interface DocumentationCtx {
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')