Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nagelflorian/react-figma-embed
React component to render figma live embeds
https://github.com/nagelflorian/react-figma-embed
figma figma-embed figma-live-embed react react-component
Last synced: 3 months ago
JSON representation
React component to render figma live embeds
- Host: GitHub
- URL: https://github.com/nagelflorian/react-figma-embed
- Owner: nagelflorian
- License: mit
- Created: 2017-09-30T01:22:45.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2024-10-02T09:22:02.000Z (4 months ago)
- Last Synced: 2024-10-08T12:58:02.809Z (4 months ago)
- Topics: figma, figma-embed, figma-live-embed, react, react-component
- Language: JavaScript
- Size: 538 KB
- Stars: 16
- Watchers: 3
- Forks: 4
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# react-figma-embed [![CircleCI](https://circleci.com/gh/nagelflorian/react-figma-embed/tree/master.svg?style=svg)](https://circleci.com/gh/nagelflorian/react-figma-embed/tree/master) [![npm](https://img.shields.io/npm/v/react-figma-embed.svg)](https://www.npmjs.com/package/react-figma-embed) [![Maintainability](https://api.codeclimate.com/v1/badges/b6e196dcd12a5f11c88f/maintainability)](https://codeclimate.com/github/nagelflorian/react-figma-embed/maintainability) [![Test Coverage](https://api.codeclimate.com/v1/badges/b6e196dcd12a5f11c88f/test_coverage)](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 (
);
}
}render(, document.getElementById('app'));
```