All Projects β†’ estevanmaito β†’ Windmill React Ui

estevanmaito / Windmill React Ui

Licence: mit
🧩 The component library for fast and accessible development of gorgeous interfaces.

Programming Languages

typescript
32286 projects

Projects that are alternatives of or similar to Windmill React Ui

tailwind-ui-components
Free Tailwind CSS UI Components - Crafted for modern websites, landing pages and web apps. TailGrids Core is free and open-source so, feel free to use with your personal or commercial projects. If you would like to show your support and love, don't forget to give us a star 🌟
Stars: ✭ 49 (-86.86%)
Mutual labels:  components, component-library, tailwindcss
Tail Kit
Tail-kit is a free and open source components and templates kit fully coded with Tailwind css 2.0.
Stars: ✭ 997 (+167.29%)
Mutual labels:  components, component-library, tailwindcss
plugin-toolkit-react
Adobe XD plugin UI components for React
Stars: ✭ 30 (-91.96%)
Mutual labels:  components, component-library
DNZ.MvcComponents
A set of useful UI-Components (HtmlHelper) for ASP.NET Core MVC based-on Popular JavaScript Plugins (Experimental project).
Stars: ✭ 25 (-93.3%)
Mutual labels:  components, component-library
mijin
Tailwind CSS UI components build for Vue.js / Nuxt.js
Stars: ✭ 168 (-54.96%)
Mutual labels:  component-library, tailwindcss
Bootstrap Vue
BootstrapVue provides one of the most comprehensive implementations of Bootstrap v4 for Vue.js. With extensive and automated WAI-ARIA accessibility markup.
Stars: ✭ 13,603 (+3546.92%)
Mutual labels:  components, component-library
Precise Ui
πŸ“ React UI Component Library powered by ZEISS.
Stars: ✭ 192 (-48.53%)
Mutual labels:  components, component-library
engage-ui
Engage UI is a React component library designed to help developers and designers creater the delightful web experiences.
Stars: ✭ 14 (-96.25%)
Mutual labels:  components, component-library
Vue Design System
An open source tool for building UI Design Systems with Vue.js
Stars: ✭ 2,077 (+456.84%)
Mutual labels:  components, component-library
taiga-ui
Angular UI Kit and components library for awesome people
Stars: ✭ 2,251 (+503.49%)
Mutual labels:  components, component-library
react-tailwind
This is a complementary React code for the tailwindcss project.
Stars: ✭ 29 (-92.23%)
Mutual labels:  components, tailwindcss
bootstrap-vue-3
Early (but lovely) implementation of Vue 3, Bootstrap 5 and Typescript
Stars: ✭ 314 (-15.82%)
Mutual labels:  components, component-library
Zent
A collection of essential UI components written with React.
Stars: ✭ 2,133 (+471.85%)
Mutual labels:  components, component-library
Semantic Ui React
The official Semantic-UI-React integration
Stars: ✭ 12,561 (+3267.56%)
Mutual labels:  components, component-library
A17t
An atomic design toolkit for pragmatists
Stars: ✭ 236 (-36.73%)
Mutual labels:  components, tailwindcss
Terraform Aws Components
Opinionated, self-contained Terraform root modules that each solve one, specific problem
Stars: ✭ 168 (-54.96%)
Mutual labels:  components, component-library
fast-blazor
Blazor component library for FluentUI. Microsoft's official lightweight wrapper around the FluentUI Web Components for use with .NET 6.0 Blazor applications
Stars: ✭ 928 (+148.79%)
Mutual labels:  components, component-library
Taiga Ui
Angular UI Kit and components library for awesome people
Stars: ✭ 1,353 (+262.73%)
Mutual labels:  components, component-library
Uniforms
A React library for building forms from any schema.
Stars: ✭ 1,368 (+266.76%)
Mutual labels:  components, component-library
wlui
wl-ui η²ΎηΎŽζ˜“η”¨ηš„ε‰η«―ε€ζ‚η»„δ»Άθ§£ε†³ζ–Ήζ‘ˆγ€‚Beautiful and easy-to-use front-end complex component solution
Stars: ✭ 32 (-91.42%)
Mutual labels:  components, component-library

Windmill React UI

The component library for fast and accessible development of gorgeous interfaces.

codecov Build npm MIT License

Projects using it: Windmill Dashboard React

Mission

Be the most accessible it can be out of the box and the fastest way to production.

Go to docs to see complete, live examples

πŸš€ Usage

Install

npm i @windmill/react-ui

Inside tailwind.config.js

const windmill = require('@windmill/react-ui/config')
module.exports = windmill({
  purge: [],
  theme: {
    extend: {},
  },
  variants: {},
  plugins: [],
})

Then place Windmill at the root of your project (the order doesn't matter, as long as your application is inside).

// index.js
import React from 'react'
import ReactDOM from 'react-dom'
import App from './App'
import { Windmill } from '@windmill/react-ui'

ReactDOM.render(
  <Windmill>
    <App />
  </Windmill>,
  document.getElementById('root')
)

Use components inside your project

import { Button } from '@windmill/react-ui'

function App() {
  return <Button>Hi there!</Button>
}

export default App

πŸ”Œ Contributing

  • Fork
  • Clone
  • npm install
  • npm run storybook

It will start a local server at localhost:6006 with all components rendered.

⚠ Use npm run cz instead of git commit! It will guide you through some short questions and guarantee that you commit message is standardized.

Commit will also trigger linting and test coverage.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].