zeed-dynamic-table
Version:
A flexible and dynamic table component for React and Next.js applications without Tailwind dependencies
14 lines (13 loc) • 374 B
TypeScript
import React, { HTMLProps, ReactNode } from "react";
type BaseProps = {
children: ReactNode;
baseProps?: HTMLProps<HTMLDivElement>;
id?: string;
};
/**
* Base container component for the dynamic table
* Provides outer styling and structure
* Updated with direct CSS styles instead of Tailwind
*/
declare const Base: React.FC<BaseProps>;
export default Base;