mirror of
https://github.com/pezkuwichain/pezkuwi-apps.git
synced 2026-04-24 11:07:59 +00:00
9 lines
328 B
TypeScript
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);
|