UNPKG

strapi-plugin-logz

Version:

Automatically capture and record the API calls made to your Strapi application

12 lines (11 loc) 309 B
import React from "react"; interface ChartHeaderProps { title: string | React.ReactNode; description?: string | React.ReactNode; SelectComponent?: React.ComponentType; } /** * Data displayed above your chart */ declare const ChartHeader: React.FC<ChartHeaderProps>; export default ChartHeader;