# fabricjs-react **Repository Path**: k8s_cloud/fabricjs-react ## Basic Information - **Project Name**: fabricjs-react - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-11-22 - **Last Updated**: 2024-11-24 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # fabricjs-react > support fabricjs from react [](https://www.npmjs.com/package/fabricjs-react) [](https://standardjs.com) ## Install We'll need to install `fabric`, `react` and `react-dom` because are peer dependencies of this library if you haven't yet otherwise install only what you don't have: ```bash npm install --save fabricjs-react fabric react react-dom ``` ## Usage Take a look at sandbox: https://codesandbox.io/s/flamboyant-wind-ff3x8 ```tsx import React from 'react' import { FabricJSCanvas, useFabricJSEditor } from 'fabricjs-react' const App = () => { const { editor, onReady } = useFabricJSEditor() const onAddCircle = () => { editor?.addCircle() } const onAddRectangle = () => { editor?.addRectangle() } return (