This library provides all of the essential building blocks for creating a Nova application.
Add the components package as a dependency to your project:
yarn add @hxnova/react-components
You will also need to install the required peer dependencies:
# With yarn
yarn add @pigment-css/react @hxnova/themes
In your typescript file, import the component(s) you want to use. You can import them from the package root, or from the specific component subfolder:
// Replace ComponentName with the specific core component you want to use
import { ComponentName } from '@hxnova/react-components';
import { ComponentName } from '@hxnova/react-components/ComponentName';
You can learn more about the specific components and their usage by viewing the comprehensive Nova documentation.