UNPKG

drizzle-cube

Version:

Drizzle ORM-first semantic layer with Cube.js compatibility. Type-safe analytics and dashboards with SQL injection protection.

8 lines (7 loc) 265 B
import { ReactElement } from 'react'; interface ChartContainerProps { children: ReactElement; height?: string | number; } export default function ChartContainer({ children, height }: ChartContainerProps): import("react/jsx-runtime").JSX.Element; export {};