JSPM

  • Created
  • Published
  • Downloads 573
  • Score
    100M100P100Q106744F
  • License MIT

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

Package Exports

  • @exogee/graphweaver-admin-ui-components
  • @exogee/graphweaver-admin-ui-components/lib/index.css
  • @exogee/graphweaver-admin-ui-components/lib/index.js

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@exogee/graphweaver-admin-ui-components) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

@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 Dropdown Menu

...