sealday
ede7ead8b1
Co-authored-by: sealday <sealday@gmail.com> Reviewed-on: daoyoucloud/tachybase#1045
14 lines
397 B
TypeScript
14 lines
397 B
TypeScript
import React, { FC } from 'react';
|
|
import { SchemaComponentOptions } from '@tachybase/client';
|
|
|
|
import * as hooks from './hooks';
|
|
import { UploadActionInitializer } from './initializers';
|
|
|
|
export const FileManagerProvider: FC = (props) => {
|
|
return (
|
|
<SchemaComponentOptions scope={hooks} components={{ UploadActionInitializer }}>
|
|
{props.children}
|
|
</SchemaComponentOptions>
|
|
);
|
|
};
|