PNPM:
pnpm add @colonydb/anthill
Yarn:
yarn add @colonydb/anthill
npm:
npm install @colonydb/anthill
import { Base } from '@colonydb/anthill/Base'; import { Button } from '@colonydb/anthill/Button'; const MyComponent = () => ( <Base> <Button onClick={() => { alert('Hello!'); }} > Click me </Button> </Base> );