7 lines
145 B
TypeScript
7 lines
145 B
TypeScript
// Wrapper for the Vega component
|
|
import { Vega as VegaOg } from "react-vega";
|
|
|
|
export function Vega(props) {
|
|
return <VegaOg {...props} />;
|
|
}
|