https://github.com/bentatum/verysimple
VerySimple UI Components
https://github.com/bentatum/verysimple
Last synced: 11 days ago
JSON representation
VerySimple UI Components
- Host: GitHub
- URL: https://github.com/bentatum/verysimple
- Owner: bentatum
- Created: 2023-10-12T16:23:29.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-10-19T18:01:28.000Z (7 months ago)
- Last Synced: 2025-03-31T22:41:22.570Z (about 2 months ago)
- Language: TypeScript
- Homepage: https://verysimple.dev
- Size: 159 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README

# @verysimple/react
`@verysimple/react` is a component library for React that is simple, customizable, and accessible. It leverages the power of React and Tailwind CSS to provide a set of components that are easy to use and adapt to your needs.
## Installation
You can install this package using npm or yarn:
```bash
npm install @verysimple/react
# or
yarn add @verysimple/react
```## Usage
Import and use components from this library like so:
```javascript
import { Button, Card } from "@verysimple/react";export const MyPage = () => {
return (
Welcome!
Login
);
};
```