4a3cb6e65f
* refactor(plugin-workflow): move client files into plugin * fix(client): fix package path block build * test(plugin-workflow): trigger ci
16 lines
447 B
TypeScript
16 lines
447 B
TypeScript
import React from 'react';
|
|
import { useTranslation } from 'react-i18next';
|
|
import { Link } from 'react-router-dom';
|
|
|
|
import { useActionContext, useRecord } from '@nocobase/client';
|
|
|
|
|
|
export const WorkflowLink = () => {
|
|
const { t } = useTranslation();
|
|
const { id } = useRecord();
|
|
const { setVisible } = useActionContext();
|
|
return (
|
|
<Link to={`/admin/plugins/workflows/${id}`} onClick={() => setVisible(false)}>{t('View')}</Link>
|
|
);
|
|
}
|