UNPKG

hotelier-lib

Version:

A skeleton to create your own React component library using Rollup, TypeScript, Sass and Storybook

12 lines (11 loc) 286 B
import React from "react"; import "./styles.css"; interface Prop { currentDates: string; handleNewBookingButton: any; roomList: any[]; roomTypeList: any[]; bookingData: any[]; } export default function Calander(props: Prop): React.JSX.Element; export {};