mirror of
https://github.com/Stirling-Tools/Stirling-PDF.git
synced 2025-09-24 12:36:13 +00:00
13 lines
523 B
TypeScript
13 lines
523 B
TypeScript
import GenericTool from '../components/tools/shared/GenericTool';
|
|
import { singleLargePageDefinition } from './definitions/singleLargePageDefinition';
|
|
import { BaseToolProps, ToolComponent } from '../types/tool';
|
|
|
|
const SingleLargePage = (props: BaseToolProps) => {
|
|
return <GenericTool definition={singleLargePageDefinition} {...props} />;
|
|
};
|
|
|
|
// Static method to get the operation hook for automation
|
|
SingleLargePage.tool = () => singleLargePageDefinition.useOperation;
|
|
|
|
export default SingleLargePage as ToolComponent;
|