@tinacms/toolkit
Version:
Tina is a lightweight but powerful toolkit for creating a site editing ui with javascript components. Tina surfaces superpowers for dev’s to create, expand on and customize a simple yet intuitive ui for editing content.
16 lines (15 loc) • 540 B
TypeScript
export default class DaysView extends React.Component<any, any, any> {
static defaultProps: {
isValidDate: () => boolean;
renderDay: (props: any, date: any) => JSX.Element;
};
constructor(props: any);
constructor(props: any, context: any);
renderNavigation(): JSX.Element;
renderDayHeaders(): JSX.Element;
renderDays(): JSX.Element[];
renderDay(date: any, startOfMonth: any, endOfMonth: any): any;
renderFooter(): JSX.Element;
_setDate: (e: any) => void;
}
import React from "react";