Get started with Active Grid by installing the necessary packages.
Get started with Active Grid by installing the necessary packages.
Install the core package and its peer dependencies.
Make sure your tailwind.config.ts includes the paths to the grid packages to ensure styles are applied correctly.
Wrap your application with the necessary providers to ensure theme and locale support.
pnpm add @workspace/grid-base @tanstack/react-table// app/layout.tsx
import { ThemeProvider } from '@workspace/providers/theme-provider';
export default function RootLayout({ children }) {
return (
<html lang="en">
<body>
<ThemeProvider>
{children}
</ThemeProvider>
</body>
</html>
);
}