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: 2 months 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 (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-10-21T02:47:50.000Z (over 1 year ago)
- Last Synced: 2025-03-26T13:12:23.582Z (3 months 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} />
);
}
```