0.0.1 • Published 3 years ago

autopad v0.0.1

Weekly downloads
-
License
MIT
Repository
github
Last release
3 years ago

AutoPad | React Styling Library

GitHub license PRs Welcome

A JavaScript UI library to build user interfaces, fast.

Get Started

Step 1 - Installation

npm i autopad

 - OR -

yarn add autopad

Step 2 - Use the new Component Library.

Once, you have installed the library, you can use it on your project by importing it in your App.js or any .js / .jsx files.

+ import { Box } from "autopad";
import "./App.css";

function App() {
  return (
    <div className="App">
+      <Box>A Component from AutoPad</Box>
    </div>
  );
}

export default App;

Contributing

We'd love to accept your patches and contributions to this project. There are just a few guidelines you need to follow.

Code of Conduct

This project follows Contributor Covenant as it's Code of Conduct, and we expect all project participants to adhere to it. Please read the full guide so that you can understand what actions will not be tolerated.

Contributing Guide

Read our contributing guide to learn about our development process, how to propose bugfixes and improvements, and how to build and test your changes to project.

LICENSE

This project is licensed under the MIT License, meaning that you're free to modify, distribute, and / or use it for any commercial or private project.