mirror of
https://github.com/pezkuwichain/pezkuwi-apps.git
synced 2026-04-22 22:57:57 +00:00
14 lines
327 B
TypeScript
14 lines
327 B
TypeScript
// Copyright 2017-2026 @pezkuwi/react-hooks authors & contributors
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
import type { IconName } from '@fortawesome/fontawesome-svg-core';
|
|
|
|
import React from 'react';
|
|
|
|
interface SectionType {
|
|
icon?: IconName;
|
|
text?: string;
|
|
}
|
|
|
|
export const TabsCtx = React.createContext<SectionType>({});
|