@pnp/spfx-controls-react
Version:
Reusable React controls for SharePoint Framework solutions
10 lines • 305 B
TypeScript
import * as React from 'react';
import { IEvent } from './models/IEvents';
export interface IWeekViewProps {
events: IEvent[];
currentDay: Date;
height?: string | number;
}
export declare const WeekView: React.FC<IWeekViewProps>;
export default WeekView;
//# sourceMappingURL=WeekView.d.ts.map