Socket
Socket
Sign inDemoInstall

@exogee/graphweaver-admin-ui-components

Package Overview
Dependencies
192
Maintainers
3
Versions
50
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @exogee/graphweaver-admin-ui-components

Components from Graphweaver's admin UI which you can use in your projects as you like


Version published
Weekly downloads
6
decreased by-53.85%
Maintainers
3
Install size
46.4 MB
Created
Weekly downloads
 

Readme

Source

@exogee/graphweaver-admin-ui-components

UI components used in the Admin UI which you can also import and use in your project as you like.

A themed button

import { Button } from '@exogee/graphweaver-admin-ui-components';
import { MyIcon } from './icon';

const MyPage = () => {
	const handleOnClick = () => alert('Button Was Clicked');

	return (
		<>
			<Button renderAfter={() => <MyIcon />} onClick={handleOnClickButton}>
				A Button Label
			</Button>
		</>
	);
};

A Popover Menu

import { PopoverItem, Popover } from '@exogee/graphweaver-admin-ui-components';

const MyPage = () => {
	const externalLinkItems: PopoverItem[] = [];

	return <Popover items={externalLinkItems}>Links</Popover>;
};

Documentation

Comprehensive documentation and usage examples can be found on our Docs Site. It covers installation instructions, detailed API documentation, and guides to help you get started with Graphweaver.

Graphweaver CLI graphweaver

The Graphweaver Command Line Interface (CLI) tool enables you to set up and manage Graphweaver using commands in your command-line shell. Check the graphweaver npm package here.

Keywords

FAQs

Last updated on 22 Mar 2024

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc