awc-ui
v1.0.12
Published
Web components awc-ui library
Downloads
4
Readme
awc-ui
Introduction
awc-ui is a collection of reusable web components for building user interfaces. The library provides a set of customizable, modular, and well-documented components that can be easily integrated into any web application.
Features
- Modular architecture for easy customization and maintainability
- Lightweight and performant web components
- Built with modern web technologies like Web Components and Shadow DOM
- Compatible with major web frameworks like React, Vue, Angular, and more
- Easy to install and use with npm or yarn
Installation
You can install awc-ui using npm or yarn:
npm install awc-ui
yarn add awc-ui
Usage
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>My Web App</title>
<script type="module">
import { AwcButton } from 'awc-ui';
</script>
</head>
<body>
<awc-button>Click me!</awc-button>
</body>
</html>