Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/lorencerri/adaptive-ui

A highly opinionated wrapper for Mantine to quickly scaffold data-driven web prototypes
https://github.com/lorencerri/adaptive-ui

Last synced: 18 days ago
JSON representation

A highly opinionated wrapper for Mantine to quickly scaffold data-driven web prototypes

Awesome Lists containing this project

README

        

# adaptive-ui

A highly opinionated wrapper for Mantine to quickly scaffold data-driven web prototypes

## Installation

1. Navigate to your React project's `/components/` directory
2. Run `git submodule add https://github.com/lorencerri/adaptive-ui`

## Styling

Internally, adaptive-ui uses [Mantine](https://mantine.dev/) components and css variables. You can override the default styling by passing your own via the `MantineProvider` component.

## Example

```tsx
const links = [
/* ... */
];

export default function Index() {
const Logo = ;

return (

} links={links} />






} links={links} />

);
}
```