## Changes: - /docs is now a Getting Started page with the first tutorial - basic-example added
7 lines
174 B
TypeScript
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} />;
|
|
}
|