@vattghern203/edo-tensei
v0.0.14
Published
Simple but useful components for react
Downloads
6
Maintainers
Readme
Using Edo Tensei Library for React Unstyled Components 🚀
Edo Tensei is a library that provides a collection of simple yet useful components for React applications. These components are designed to assist web developers in creating common UI elements. Edo Tensei is built using React, TypeScript, Styled Components, React Icons, Composition Pattern, and follows React best practices. 💡
Prerequisites 🛠️
Before you get started, ensure you have the following:
- Node.js and npm installed on your system. 🌐
- Basic knowledge of React and JavaScript. 💻
Installation and Setup 🛠️
To use the Edo Tensei library in your project, follow these steps:
1. Install the Package 📦
Open your terminal and navigate to your project directory. Run the following command to install the Edo Tensei library:
npm install @vattghern203/edo-tensei
2. Import Components 📥
import { Button } from '@vattghern203/edo-tensei';
function App() {
return (
<div>
{/* Other components */}
<Button>Click me</Button>
</div>
);
}