React | CombricSkip to content

React

Combric

Import the public stylesheet once:

@import "@combric/react/css";

Then import only public component exports:

import { Button, Card, CardContent, Stack } from "@combric/react";
export function ProjectActions() {
return (
<Card>
<CardContent>
<Stack gap="3">
<Button>Save project</Button>
</Stack>
</CardContent>
</Card>
);
}

No Tailwind dependency, provider, or mandatory runtime theme is required.