React specific wrapper for the components of the Graphite Design System
npm install @graphiteds/reactThese are React specific building blocks on top of @graphiteds/core components.
Tested on:
We support only modern browsers.
``bash`
npx browserslist "> 1%, last 2 versions, not dead, not ie 11"
So it doesn't run on legacy browsers: IE11, Edge 18 & below (Edge before it moved to Chromium), and Safari 10.
The advantage of this is we have less runtime within our builds, and having faster production builds by not having to also downlevel to es5. Plus you don't need any polyfills.
Add this package to your project:
`sh`
npm install @graphiteds/react
In your index.js add the following code:
`js`
// Core CSS required for Graphite components to work properly
import "@graphiteds/react/css/core.css";
Import the component(s) you want to use:
`js`
import { GrButton } from "@graphiteds/react";
Use it in your JSX as any React component:
`html`
A working example of this setup: https://codesandbox.io/s/graphiteds-react-example-yhr9p.
Follow the instructions in the root of this repo.
In packages/react/test-apps/react-app there is a test app.
In order to run it:
- Make sure you've run npm run bootstrap & npm run build in the root of this repocd packages/react/test-apps/react-app
- Navigate to the test app with npm install
- Run npm run sync
- Run (this copies the relevant core & react dist files to the node_modules of the test-app)npm start`
- Run the project with