This repository contains a collection of reusable React components styled with Tailwind CSS. The components are designed to be easily integrated into your React projects, providing a consistent and visually appealing user interface.
To use this component library in your project, you can install it via npm
or yarn
.
npm install @wedevs/tail-react
# or
yarn add @wedevs/tail-react
On your tailwind.config.js
file, update the content entry:
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
+ "node_modules/@wedevs/tail-react/dist/index.js"
],
theme: {
extend: {},
},
plugins: [
+ import('@tailwindcss/forms'),
],
}