phx-react
Version:
PHX REACT
15 lines (14 loc) • 461 B
TypeScript
import React from 'react';
export type PHXDateTimelineItem = {
title: string;
date: string;
time: Date;
};
export type PHXDateTimelineProps = {
timeline?: Array<PHXDateTimelineItem>;
daysOfWeek?: Array<string>;
windowSize?: number;
onChangeTime?(date: Date): void;
};
declare const PHXTabDate: ({ daysOfWeek, onChangeTime, timeline: timelineProp, windowSize, }: PHXDateTimelineProps) => React.JSX.Element;
export default PHXTabDate;