Files
noahspan-flying/client/src/context/logbookContext/LogbookContextProps.interface.ts
2025-10-24 08:31:13 -05:00

8 lines
215 B
TypeScript

import { Action } from './reducer';
import { LogbookContextState } from './LogbookContextState.interface';
export interface LogbookContextProps {
state: LogbookContextState;
dispatch: React.Dispatch<Action>;
}