JSPM

@nextui-org/react

1.0.1-alpha.32
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 73707
  • Score
    100M100P100Q35403F
  • License MIT

🚀 Beautiful and modern React UI library.

Package Exports

  • @nextui-org/react

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@nextui-org/react) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

nextui

Nextui


codecov badge CI/CD nextui License

Getting Started

Visit https://nextui.org/guide to get started with NextUI.

Documentation

Visit https://nextui.org/docs to view the full documentation.

Quick Start

  1. Installation: Inside your React project directory, install NextUI by running either of the following yarn add @nextui-org/react or npm i @nextui-org/react.

  2. Setup: For NextUI to work correctly, you need to set up the CssBaseline at the root of your application.

Go to the root of your application and do this:

import { CssBaseline } from '@nextui-org/react';

const Application = () => (
  <>
    <CssBaseline /> // ---> Normalize styles
    <AppComponent /> // ---> Your App Component
  </>
);
  1. Using NextUI components: Once NextUI is installed you can use any of the components as follows.
import { Button } from '@next-ui/react';
const Component = () => <Button>Click me</Button>;

Contributing

Contributions are always welcome!

See CONTRIBUTING.md for ways to get started.

Please adhere to this project's CODE_OF_CONDUCT.

License

MIT