@antonyjones87/data-grid
v0.1.0
Published
A feature-rich React table component for displaying tabular data
Maintainers
Readme
packages / data-grid
The data-grid package includes a table component with advanced features for displaying tabular data, such as sorting, filtering, and pagination.
Explore other packages in the building-blocks monorepo
Getting started
To get started with using the components from this package in your project, follow these steps:
Install the
core-componentspackage from npm:npm install @antonyjones87/core-componentsIt's important to note that
core-componentsis a peer dependency of thedata-gridpackage. This means that you'll need to installcore-componentsseparately in your project for the data grid components to work correctly.Install the
data-gridpackage from npm:npm install @antonyjones87/data-gridImport and use the components in your React application, ensuring they are wrapped within the
ThemeProvidercomponent from thecore-componentspackage:import { ThemeProvider } from '@antonyjones87/core-components'; function App() { return ( <ThemeProvider theme="light"> // something here soon </ThemeProvider> ); }
