@orca-fe/pocket
Version:
UI components by orca-team
12 lines (11 loc) • 392 B
TypeScript
import React from 'react';
import CounterStore from './CounterStore';
export interface CounterProps extends React.HTMLAttributes<HTMLDivElement> {
counter?: CounterStore;
}
declare function useStore(_store?: CounterStore): CounterStore;
declare const Counter: {
(props: CounterProps): import("react/jsx-runtime").JSX.Element;
useStore: typeof useStore;
};
export default Counter;