Skip to content

React component to render figma live embeds

License

Notifications You must be signed in to change notification settings

nagelflorian/react-figma-embed

Repository files navigation

react-figma-embed CircleCI npm Maintainability Test Coverage

React component to render Figma live embeds.

Install

npm install react-figma-embed --save

Quick start

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'));