0.3.0 • Published 1 year ago
amtrz-snow-ui v0.3.0
SnowUI
SnowUI is a React UI of "stupid" (with no state or effect, you'll have to provide it by yourself) components library implementation of SnowUI design kit by ByeWind. Implemented and improved by Amtrz team. Based on TailwindCSS. Build your design using it
Take a look at my CV =)
How to install
1. Install our library
npm add amtrz-snow-ui
# or
yarn add amtrz-snow-ui
# or
pnpm add amtrz-snow-ui
# or
bun add amtrz-snow-ui
2. Add to your global css file
@import "amtrz-snow-ui/index.css";
3. Import any component in your project
import { Button } from "amtrz-snow-ui";
3. You're good to go =)
How to develop
Clone repo
Install dependencies
npm install
# or
yarn
# or
pnpm install
# or
bun install
Getting Started
First, run the development server:
npm run dev
# or
yarn dev
# or
pnpm dev
# or
bun dev
Test lib in storybook
One of these commands will start tests:
!WARNING Make sure you have storybook running
npm run test
# or
yarn test
# or
pnpm test
# or
bun test
Builds
One of these commands will compile project in 'dist' directory
npm run build-lib
# or
yarn build-lib
# or
pnpm build-lib
# or
bun build-lib
One of these commands will compile storybook in 'storybook-static' directory
npm run build-storybook
# or
yarn build-storybook
# or
pnpm build-storybook
# or
bun build-storybook