Each component is crafted with precision to ensure accessibility and ease of use, allowing you to enhance your application's interface with minimal effort.
Nexus-UI is available at npm.
# Using npm
npm install @tony9090/nexus-ui
# Using yarn
yarn add @tony9090/nexus-ui
# Using pnpm
pnpm add @tony9090/nexus-ui
Component can be imported individually so that you only bundle what you use. Import path is available in the documentation of the corresponding component.
import { Button } from '@tony9090/nexus-ui';
export default function MyComponent() {
return <Button label="Nexus" />;
}
To start the Storybook server and see the components in action, run the following commands:
# Using npm
npm run storybook
# Using yarn
yarn storybook
# Using pnpm
pnpm storybook