0.0.1 • Published 2 years ago

@elevenia/edts-ui-core v0.0.1

Weekly downloads
-
License
ISC
Repository
-
Last release
2 years ago

EDTS UI

A brief description of what this project does and who it's for.

Installation

Install @elevenia/edts-ui with npm:

npm install @elevenia/edts-ui tailwindcss postcss autoprefixer -D

or yarn:

yarn add @elevenia/edts-ui tailwindcss postcss autoprefixer --dev

Initialize tailwindcss config with running:

npx tailwindcss init -p

Import @elevenia/edts-ui as tailwindcss plugin in tailwind.config.js file:

module.exports = {
  //...
  plugins: [
    require('@elevenia/edts-ui')
  ]
}

For more information about tailwindcss installation, please click here.

Run Locally

Clone the project

git clone https://bitbucket.org/edts/master-ui-tailwind.git

Go to the project directory

cd master-ui-tailwind

Install dependencies

yarn install

Run lerna bootstrap

lerna bootstrap

Start development server

yarn docs:dev

Usage/Examples

import Component from 'my-project'

function App() {
  return <Component />
}