mirror of
https://github.com/pezkuwichain/pezkuwi-apps.git
synced 2026-06-15 17:21:10 +00:00
8 lines
249 B
TypeScript
8 lines
249 B
TypeScript
import React from 'react';
|
|
interface Props {
|
|
className?: string;
|
|
}
|
|
declare function LocalFork({ className }: Props): React.ReactElement<Props> | null;
|
|
declare const _default: React.MemoExoticComponent<typeof LocalFork>;
|
|
export default _default;
|