@amsterdam/bmi-dms-upload
Version:
A document upload flow that can be implemented in any BMI React application. Documents are stored in DMS. Metadata can be added in the flow.
10 lines • 421 B
TypeScript
import React from 'react';
import { store } from './store';
export type Props = {
children?: React.ReactNode | React.ReactNode[] | any;
};
export type RootState = ReturnType<typeof store.getState>;
export type AppDispatch = typeof store.dispatch;
declare function CustomProvider({ children }: Props): import("react/jsx-runtime").JSX.Element;
export default CustomProvider;
//# sourceMappingURL=CustomProvider.d.ts.map