15 lines
353 B
JavaScript
15 lines
353 B
JavaScript
import React from 'react';
|
|
import { formatMessage } from 'umi/locale';
|
|
import Link from 'umi/link';
|
|
import Exception from '@/components/Exception';
|
|
|
|
|
|
export default ()=>(
|
|
<Exception
|
|
type="403"
|
|
desc={formatMessage({ id: 'app.exception.description.403' })}
|
|
linkElement={Link}
|
|
backText={formatMessage({ id: 'app.exception.back' })}
|
|
/>
|
|
);
|