Skip to content

Latest commit

 

History

History
41 lines (30 loc) · 555 Bytes

README.md

File metadata and controls

41 lines (30 loc) · 555 Bytes

@acme/core

A collection of React components, hooks, constants and utilities.

Installation:

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

Usage

Use the package withing the consuming app/lib configuration.

import { Button } from '@acme/core';

export default function App() {
  return (
    <div>
      <Button>Button</Button>
    </div>
  );
}