This section provides detailed instructions on how to install the framework in your project.
install.shshell
npm install @nuco/core @nuco/variable
index.htmlhtml
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@nuco/variable@latest/dist/css/variables.css" />
page.tsxtsx
import { Button } from "@nuco/react/components/Button";
const Page = () => {
return (
<>
<Button
type="primary"
onClick={() => alert("Hello, World!")}
>
Hello, World!
</Button>
</>
);
}
export default Page;