Files
pezkuwi-apps/packages/react-hooks/src/ctx/AccountSidebar.tsx
T

9 lines
328 B
TypeScript

// Copyright 2017-2026 @pezkuwi/react-hooks authors & contributors
// SPDX-License-Identifier: Apache-2.0
import React from 'react';
type SetStateContext = undefined | (([address, onUpdateName]: [string | null, (() => void) | null]) => void);
export const AccountSidebarCtx = React.createContext<SetStateContext>(undefined);