---
title: 审批流详情抽屉
sidemenu: true
---

## 审批流详情抽屉


```tsx
/**
 * background: '#f0f2f5'
 */

import React, {useState} from 'react';
import { Space, Button } from 'antd';
import {AuditList} from '@/components';
export default () => {

  return (
    <Space direction="vertical" style={{width: 500}} >
    <AuditList  chainId={'a145482c-2f24-4edb-a325-9dab920a6743'} triggerRender={<Button>确定提交</Button>}/>
    </Space>
  );
};
```

<API src="@/components/AuditList"></API>
