Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/lorencerri/adaptive-ui
- Owner: lorencerri
- Created: 2023-10-08T18:02:33.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2023-10-21T02:47:50.000Z (about 1 year ago)
- Last Synced: 2024-10-09T17:04:34.046Z (30 days ago)
- Language: TypeScript
- Homepage:
- Size: 16.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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} />
);
}
```