Luccas Mateus de Medeiros Gomes 7450302440 [basic-example][m] - initial commit
2023-04-25 15:03:07 -03:00

7 lines
174 B
TypeScript

// Wrapper for the Vega Lite component
import { VegaLite as VegaLiteOg } from "react-vega";
export default function VegaLite(props) {
return <VegaLiteOg {...props} />;
}