A collection of React components, hooks, constants and utilities.
Install the package into the consuming app/lib configuration.
If in a turborepo:
// package.json
{
"devDependencies": {
"@acme/core": "*"
// ...
}
}
If NOT in a Turborepo:
yarn add -D @acme/core
Use the package withing the consuming app/lib configuration.
import { Button } from '@acme/core';
export default function App() {
return (
<div>
<Button>Button</Button>
</div>
);
}