suanpan-web-renderer
v0.2.14
Published
用于渲染算盘页面
Downloads
10
Readme
算盘渲染器
用于渲染算盘页面
更新内容详见 Release Notes 或者 Github Release
API 列表
示例
加载算盘项目页面
import { Graph, Map } from 'suanpan-web-renderer';
const root = ReactDOM.createRoot(document.getElementById('root'));
root.render(<React.StrictMode>
<div style={{width: '50%', height: '50%'}}>
<Graph domain={"https://www.xuelangyun.com"} appId={3109} token={'some_token'} isInsightEdit={true}/>
</div>
<div style={{width: '50%', height: '50%'}}>
<Map url={'some_url'}/>
</div>
</React.StrictMode>);