react-figma-embed
Version:
React component to render figma live embeds
28 lines (20 loc) • 1.14 kB
Markdown
react-figma-embed [](https://circleci.com/gh/nagelflorian/react-figma-embed/tree/master) [](https://www.npmjs.com/package/react-figma-embed) [](https://codeclimate.com/github/nagelflorian/react-figma-embed/maintainability) [](https://codeclimate.com/github/nagelflorian/react-figma-embed/test_coverage)
React component to render [Figma live embeds](https://www.figma.com/platform).
# Install
```console
npm install react-figma-embed --save
```
# Quick start
```js
import React, { Component } from 'react';
import { render } from 'react-dom';
import FigmaEmbed from 'react-figma-embed';
class App extends Component {
render() {
return (
<FigmaEmbed url="https://www.figma.com/file/LKQ4FJ4bTnCSjedbRpk931/Sample-File" />
);
}
}
render(<App />, document.getElementById('app'));
```