Getting Started
Installation
npm install @colonydb/anthill
Usage
import { Base } from '@colonydb/anthill/Base';
import { Button } from '@colonydb/anthill/Button';
const MyApp = () => (
<Base>
<Button
onClick={() => {
window.alert('Hello!');
}}
>
Click me
</Button>
</Base>
);