2021-12-22 22:37:30 -03:00
2021-11-13 21:03:49 -03:00
2021-08-15 11:44:38 -03:00
2021-04-24 10:40:25 -03:00
2021-04-22 10:07:22 -03:00
2021-11-06 23:29:50 -03:00
2021-04-22 10:07:22 -03:00
2021-10-09 21:21:18 -03:00
2021-04-25 11:00:16 -03:00
2021-04-22 10:07:22 -03:00
2021-04-22 10:07:22 -03:00
2021-11-06 23:29:50 -03:00
2021-06-20 21:58:16 -03:00
2021-08-10 16:59:06 -03:00

nextui

NextUI


License codecov badge CI/CD nextui npm downloads

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
  1. 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. NextUI uses tree-shaking so the unused modules will not be included in the bundle during the build process and each component is exported separately.
import { Button } from '@nextui-org/react';

const Component = () => <Button>Click me</Button>;
  1. NextUI allows to manually import components if you need. E.g.
import Button from '@nextui-org/react/button';

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

Description
🚀 Beautiful, fast and modern React UI library.
Readme MIT 164 MiB
Languages
TypeScript 65.8%
JavaScript 16.9%
MDX 16.8%
CSS 0.3%
Handlebars 0.2%