Growth UI React
React components for faster and easier web development. Build your own design system. The official Growth-UI-React integration.

A quick thank for our sponsors:

Jquery Free
jQuery is a DOM manipulation library. It reads from and writes to the DOM. React uses a virtual DOM (a JavaScript representation of the real DOM). React only writes patch updates to the DOM, but never reads from it.

It is not feasible to keep real DOM manipulations in sync with React's virtual DOM. Because of this, all jQuery functionality has been re-implemented in React.

Install icon

Install

$ yarn add @growth-ui/react
# Or npm
$ npm install @growth-ui/react

After install, import GrowthStyle and wrap your app component.

import GrowthStyle from '@growth-ui/react/growth.css';

const App = () => (
  <GrowthStyle>
    <AppComponent />
  </GrowthStyle>
)
Read the quick and easy set up guide.
Tool icon

Basic usage

import Buttom from '@growth-ui/react/elements/Button'

const App = () => (
  <Button primary>
    Hello Growth UI React
  </Button>
)