1.0.0-alpha.0 • Published 11 months ago

@antv/gi-core-assets v1.0.0-alpha.0

Weekly downloads
-
License
ISC
Repository
github
Last release
11 months ago

@antv/gi-core-assets

This package provides core assets essential for building graph applications and is intended to be paired with the @antv/gi-sdk package, which provides an SDK for rendering graph insight applications.

Installation

$ npm install @antv/gi-core-assets
# or
$ yarn add @antv/gi-core-assets

Usage

import React from 'react';
import GICoreAssets from '@antv/gi-core-assets';
import { GISDK } from '@antv/gi-sdk';
import { config } from './config';

export const Demo: React.FC = () => {
  const assets = [GICoreAssets];

  return <GISDK config={config} assets={assets} />;
};