Package Exports
- annotatable-table-component
Readme
- Import the component and its styles:
import { AnnotatedTableComponent } from 'annotatable-table-component';
import 'annotatable-table-component/styles';
// Use the component
const MyComponent = () => {
const data = {
headers: ["Name", "Age", "City"],
rows: [
["Alice", 30, "New York"],
["Bob", 25, "San Francisco"]
]
};
return ;
};
Props
data
: Object containingheaders
(string[]) androws
(Array<string | number>[])