import { LinkOutlined } from '@ant-design/icons'; import { css, useApp } from '@nocobase/client'; import { Button } from 'antd'; import React from 'react'; import { useTranslation } from '../locale'; export const OpenInNewTab = () => { const { t } = useTranslation(); const app = useApp(); const onOpenInNewTab = () => { window.open(app.getRouteUrl('/mobile')); }; return (
); };