Skip to Content

删除属性

¥Remove Attribution

此示例演示了如何从渲染器中删除 React Flow 属性。

¥This example demonstrates how you can remove the React Flow attribution from the renderer.

如果你正在考虑删除属性,我们首先想提一下:

¥If you’re considering removing the attribution, we’d first like to mention:

如果你在组织中使用 React Flow 并从中赚钱,我们依靠你的支持来保持 React Flow 在 MIT 许可下开发和维护。在删除属性之前,查看你可以支持 React Flow 的方式保持运行

¥If you’re using React Flow at your organization and making money from it, we rely on your support to keep React Flow developed and maintained under an MIT License. Before you remove the attribution, see the ways you can support React Flow to keep it running.

你是否在个人项目中使用 React Flow?太棒了!继续删除属性。你可以通过报告发现的任何错误、向我们发送项目的屏幕截图以及在 Github 上给我们加星标来支持我们。如果你开始使用 React Flow 赚钱或在将来在组织中使用它,我们会要求你重新添加归因或注册我们的订阅之一。

¥Are you using React Flow for a personal project? Great! Go ahead and remove the attribution. You can support us by reporting any bugs you find, sending us screenshots of your projects, and starring us on Github. If you start making money using React Flow or use it in an organization in the future, we would ask that you re-add the attribution or sign up for one of our subscriptions.

感谢你对我们的支持 ✌🏻

¥Thank you for supporting us ✌🏻

import React from 'react'; import { ReactFlow, Background } from '@xyflow/react'; import '@xyflow/react/dist/style.css'; import { nodes, edges } from './initialElements'; /** * This example demonstrates how you can remove the attribution from the React Flow renderer. * Please only hide the attribution if you are subscribed to React Flow Pro: https://reactflow.dev/pro */ const proOptions = { hideAttribution: true }; function RemoveAttributionExample() { return ( <ReactFlow defaultNodes={nodes} defaultEdges={edges} fitView proOptions={proOptions} nodesDraggable > <Background /> </ReactFlow> ); } export default RemoveAttributionExample;