Salesforce Lightning Design System components built with React 16
npm install react-lightning-design-components```
$ yarn add react-lightning-design-components
`javascript
import React from 'react';
import { Button } from 'react-lightning-design-components';
function click() { alert('Clicked'); }
React.render(
See more examples in examples directory.
Running examples locally
This repo ships with a simple Express app which serves up examples of the components on
`http://localhost:3000`. To get that running follow these steps:1. run
`yarn` in this repo's root directory.
2. `cd examples`
3. In the examples directory run:
* `yarn --ignore-engines`
* `yarn start:dev``