🚧 elevate-react (unreleased) 🚧
https://elevate-blockchain.github.io/elevate-component-library/
Build websites even faster with components on top of React and Tailwind CSS
See: https://elevate-blockchain.github.io/elevate-component-library/
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
elevate
as a dependency usingnpm
by running the following command:
npm i elevate elevate-react # or yarn add elevate elevate-react
- Require
elevate
as a plugin inside thetailwind.config.js
file, and include content fromelevate-react
:
module.exports = {
content: [
...,
'node_modules/elevate-react/**/*.{js,jsx,ts,tsx}'
],
plugins: [..., require('')],
...
};