elevate-react
v0.3.8
Published
<div align="center"> <h1>:construction: elevate-react (unreleased) :construction:</h1> <p> <a href="https://elevate-blockchain.github.io/elevate-component-library/"> <img alt="Elevate - Tailwind CSS components" width="350" src=".github/asset
Maintainers
Readme
elevate-react is an open source collection of UI components, built in React, with utility classes from Tailwind CSS that you can use as a starting point for user interfaces and websites
Table of Contents
Documentation
Documentation for elevate-react is not yet finished.
If you want to browse the components, visit elevate-react.com.
If you want to learn more about Elevate, visit Elevate docs.
Getting started
Make sure you have Node.js installed.
To use elevate-react, you need to setup elevate and also install elevate-react from npm or yarn.
elevate can be included as a plugin into an existing Tailwind CSS project.
- Install
elevateas a dependency usingnpmby running the following command:
npm i elevate elevate-react # or yarn add elevate elevate-react- Require
elevateas a plugin inside thetailwind.config.jsfile, and include content fromelevate-react:
module.exports = {
content: [
...,
'node_modules/elevate-react/**/*.{js,jsx,ts,tsx}'
],
plugins: [..., require('')],
...
};