Astro UI Library
How to use this library?
Install
npm install astro-ui-library
Import and Use
import ReactDOM from "react-dom";
import { AstroButton } from "astro-ui-library/dist";
import "astro-ui-library/dist/styles.css";
const container = document.getElementById('root');
const root = ReactDOM.createRoot(container);
root.render(<AstroButton>Button</AstroButton>);
Note: Astro UI Library is heavily maintained and gets new components added regularly. Engineers are welcome to contribute to this open source library. Visit CONTRIBUTING.md to see how!