forked from sagnik/Project_Velocity
11 lines
264 B
JavaScript
11 lines
264 B
JavaScript
import React from "react";
|
|
/**
|
|
* Render the button elements in the calendar.
|
|
*
|
|
* @private
|
|
* @deprecated Use `PreviousMonthButton` or `@link NextMonthButton` instead.
|
|
*/
|
|
export function Button(props) {
|
|
return React.createElement("button", { ...props });
|
|
}
|