"use client" import { type Table } from "@tanstack/react-table" import { Plus } from "lucide-react" import { Button } from "@/components/ui/button" import type { PageInformation } from "@/db/schema/information" interface InformationTableToolbarActionsProps { table: Table onAdd: () => void } export function InformationTableToolbarActions({ onAdd, }: InformationTableToolbarActionsProps) { return (
) }