Introduction
Installation
Download the Graphite Grid package from the NPM registry or our CDN deployments. A valid, active license is required to use Graphite Grid beyond evaluation purposes. Visit our Pricing page for information on obtaining a license.
Install via npm
Run the following command in your terminal or IDE:
npm install @1771technologies/graphite-grid-react
This command adds Graphite Grid as a dependency to your project. You can now import the Graphite Grid code into your project.
// Import the necessary CSS for Graphite Grid
import "@1771technologies/graphite-grid-react/css";
import { useGraphiteGrid, GraphiteGridDom } from "@1771technologies/graphite-grid-react";
// Add your code here
Install via CDN
Use the following locations to get the Graphite Grid files from a CDN:
Add the script
and link
elements to the <head/>
of your HTML files.
<script
type="text/javascript"
src="https://cdn.jsdelivr.net/npm/@1771technologies/graphite-grid-react@1.0.1/index.js"
></script>
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/@1771technologies/graphite-grid-react@1.0.1/style.css"
/>
After adding these elements, Graphite Grid will become available for your application.
Next Steps
- Quick start: Get up and running with Graphite Grid using our quick start guide.
- License activation: Learn how to activate your Graphite Grid license.