Skip to main content

Components

AGG provides ready-to-use React components via the @agg-market/ui package.

HelloWorld

A simple component that fetches and displays a hello message from the API.
import { HelloWorld } from "@agg-market/ui/hello-world";

<HelloWorld />
Requirements: Must be wrapped in an <AggProvider> from @agg-market/hooks.

Button

A basic button component.
import { Button } from "@agg-market/ui/button";

<Button onClick={() => console.log("clicked")}>Click me</Button>