mirror of
https://github.com/0xPARC/zkmessage.xyz.git
synced 2026-04-23 03:00:11 -04:00
12 lines
238 B
TypeScript
12 lines
238 B
TypeScript
import { createContext } from "react"
|
|
|
|
import type { VKeys } from "utils/types"
|
|
|
|
interface AppContextValue {
|
|
vkeys: VKeys
|
|
}
|
|
|
|
export const AppContext = createContext<AppContextValue>({
|
|
vkeys: { sign: null, reveal: null, deny: null },
|
|
})
|