@exogee/graphweaver-admin-ui-components
TypeScript icon, indicating that this package has built-in type declarations

0.2.24 • Public • Published

@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.

Package Sidebar

Install

npm i @exogee/graphweaver-admin-ui-components

Weekly Downloads

2

Version

0.2.24

License

MIT

Unpacked Size

492 kB

Total Files

390

Last publish

Collaborators

  • skeep
  • kevinbrown
  • exogee-kevin