/* Copyright 2026 Marimo. All rights reserved. */ import "../vega/vega.css"; import React from "react"; import { z } from "zod"; import { createPlugin } from "@/plugins/core/builder"; import type { DataExplorerState } from "./ConnectedDataExplorerComponent"; const LazyDataExplorerComponent = React.lazy( () => import("./ConnectedDataExplorerComponent"), ); export const DataExplorerPlugin = createPlugin( "marimo-data-explorer", ) .withData( z.object({ label: z.string().nullish(), data: z.string(), }), ) .renderer((props) => ( ));