hotelier-lib
Version:
A skeleton to create your own React component library using Rollup, TypeScript, Sass and Storybook
10 lines (9 loc) • 322 B
TypeScript
import React from 'react';
interface calanderProps {
calanderColumns: any;
calanderRows: any;
handleActions: any;
handleStatusChange: any;
}
declare function calander({ calanderColumns, calanderRows, handleActions, handleStatusChange }: calanderProps): React.JSX.Element;
export default calander;