@tanstack/react-table-devtools
Version:
React devtools for TanStack Table.
12 lines (10 loc) • 345 B
JavaScript
import { TableDevtoolsPanel } from "./ReactTableDevtools.js";
import { createReactPlugin } from "@tanstack/devtools-utils/react";
//#region src/production/plugin.tsx
const [plugin] = createReactPlugin({
name: "TanStack Table",
Component: TableDevtoolsPanel
});
const tableDevtoolsPlugin = plugin;
//#endregion
export { tableDevtoolsPlugin };