Files
ragflow/web/src/pages/404.jsx
so95 cc5960b88e Vietnamese language support on web (#3549)
### What problem does this PR solve?

_Briefly describe what this PR aims to solve. Include background context
that will help reviewers understand the purpose of the PR._

### Type of change

- [X] New Feature (non-breaking change which adds functionality)
2024-11-21 18:43:08 +08:00

20 lines
393 B
JavaScript

import { Button, Result } from 'antd';
import { history } from 'umi';
const NoFoundPage = () => {
return (
<Result
status="404"
title="404"
subTitle="Page not found, please enter a correct address."
extra={
<Button type="primary" onClick={() => history.push('/')}>
Business
</Button>
}
/>
);
};
export default NoFoundPage;