Socket
Book a DemoInstallSign in
Socket

@nextui-org/react

Package Overview
Dependencies
Maintainers
1
Versions
810
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@nextui-org/react

🚀 Beautiful and modern React UI library.

Source
npmnpm
Version
1.0.1-alpha.33
Version published
Weekly downloads
63K
32.61%
Maintainers
1
Weekly downloads
 
Created
Source

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

  • 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
  • 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
  </>
);
  • 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

Keywords

next

FAQs

Package last updated on 25 Sep 2021

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts