All Projects → aragon → Ui

aragon / Ui

Licence: mit
🦚 UI kit for decentralized apps

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Ui

Rimble Ui
React components that implement Rimble's Design System.
Stars: ✭ 357 (+51.27%)
Mutual labels:  web3, styled-components
sugui
UI Components library based on React, Styled Components and React Testing Library
Stars: ✭ 17 (-92.8%)
Mutual labels:  styled-components, ui-kit
React95
🌈🕹 Refreshed Windows 95 style UI components for your React app
Stars: ✭ 4,877 (+1966.53%)
Mutual labels:  ui-kit, styled-components
styled-minimal
Minimal UI theme with styled-components
Stars: ✭ 18 (-92.37%)
Mutual labels:  styled-components, ui-kit
Sugui Design System
A design system template for the SugUI components library based on styleguidist
Stars: ✭ 17 (-92.8%)
Mutual labels:  ui-kit, styled-components
Bancointer
Redesign of Banco Inter's Internet Banking
Stars: ✭ 216 (-8.47%)
Mutual labels:  styled-components
Metroset Ui
Windows Forms Metro Skin Style, Make The Applications With Metro Styles. see more https://n-a-r-w-i-n.github.io/MetroSet-UI/
Stars: ✭ 228 (-3.39%)
Mutual labels:  ui-kit
Music163 React
🔥基于React全家桶开发:「网易云音乐PC端项目」实战
Stars: ✭ 209 (-11.44%)
Mutual labels:  styled-components
Trust Web3 Provider
Web3 javascript wrapper provider for iOS and Android platforms.
Stars: ✭ 210 (-11.02%)
Mutual labels:  web3
Styled Ppx
Typed styled components in Reason, OCaml and ReScript
Stars: ✭ 236 (+0%)
Mutual labels:  styled-components
Vue Material Kit
Vue Material Kit - Open Source Material Design UI Kit
Stars: ✭ 231 (-2.12%)
Mutual labels:  ui-kit
React Progressive Bg Image
🖼 Medium style progressive background image.
Stars: ✭ 226 (-4.24%)
Mutual labels:  styled-components
Flutter ui collection
This repository contains Collection of UI made using Flutter.
Stars: ✭ 213 (-9.75%)
Mutual labels:  ui-kit
React World
✨🌌 A different web experience in 8 bit React.js World
Stars: ✭ 230 (-2.54%)
Mutual labels:  styled-components
Styled Loaders
Loaders Built with Preact and Styled Components
Stars: ✭ 212 (-10.17%)
Mutual labels:  styled-components
Walletconnect Monorepo
WalletConnect Monorepo
Stars: ✭ 230 (-2.54%)
Mutual labels:  web3
Uigradients
Gradients-as-a-react-component™
Stars: ✭ 211 (-10.59%)
Mutual labels:  styled-components
Govuk React
An implementation of the GOV.UK Design System in React using CSSinJS
Stars: ✭ 219 (-7.2%)
Mutual labels:  styled-components
Styled Components Breakpoint
Utility function for using breakpoints with styled-components 💅.
Stars: ✭ 231 (-2.12%)
Mutual labels:  styled-components
Next Blog Firestore
Example of blog built with React, Next.js, Firebase Firestore, Styled-Component, Mobx State Tree and other cool technologies
Stars: ✭ 219 (-7.2%)
Mutual labels:  styled-components

aragonUI

Overview

aragonUI is a React library used to build user interfaces for Aragon and its related projects. It provides the components needed to build experiences that feel integrated with Aragon ecosystem, and can be used both client or server side.

The complete documentation can be found on the aragonUI website.

Getting Started

If you are unfamiliar with aragonUI, we recommend you to start with the getting started page. If you only want to know how to add aragonUI to your project, have a look at the quick setup:

Quick setup

Install aragonUI alongside styled-components from npm:

npm install --save @aragon/ui styled-components

Copy its assets into your public directory:

npx copy-aragon-ui-assets ./public

Wrap your app with the Main component:

import React from 'react'
import { Main } from '@aragon/ui'

function App() {
  return (
    <Main>
      <h1>Hello aragonUI!</h1>
    </Main>
  )
}

Your project is now ready to use aragonUI. 💫

Open https://ui.aragon.org/ to see the list of the available components and learn how to use them.

Assets

aragonUI require some assets (e.g. fonts) in order to work properly. These need to be copied where they can be accessed by the library, like the public/ directory of a project using Create React App.

Copy these assets using the provided copy-aragon-ui-assets command:

npx copy-aragon-ui-assets ./public

By default, it will create a directory named aragon-ui in the specified directory.

This emplacement is communicated to the library through the <Main> component. The default path is ./aragon-ui/, but you can change it using the assetsUrl prop:

import { Main } from '@aragon/ui'

const App = () => (
  <Main assetsUrl="http://example.com/aragon-ui-assets/">
    <h1>Hello aragonUI!</h1>
  </Main>
)

You may also want to add it as a build step in your project, so that aragonUI can be upgraded without having to worry about this.

"scripts": {
  "sync-assets": "copy-aragon-ui-assets ./public",
  "build": "npm run sync-assets && react-scripts build",
  "start": "npm run sync-assets && react-scripts start"
}

See copy-aragon-ui-assets -h for more information.

Build and Develop

Please have a look at CONTRIBUTING.md.

Projects using aragonUI

License

MIT, see LICENSE.

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].