## Changes: - /docs is now a Getting Started page with the first tutorial - basic-example added
7 lines
153 B
TypeScript
7 lines
153 B
TypeScript
// Wrapper for the Vega component
|
|
import { Vega as VegaOg } from "react-vega";
|
|
|
|
export default function Vega(props) {
|
|
return <VegaOg {...props} />;
|
|
}
|