mirror of
https://gitee.com/ant-design/ant-design.git
synced 2024-12-02 20:19:44 +08:00
411 B
411 B
order | title | ||||
---|---|---|---|---|---|
6 |
|
zh-CN
服务器发生了错误。
en-US
Something went wrong on server.
import { Button, Result } from 'antd';
import React from 'react';
const App: React.FC = () => (
<Result
status="500"
title="500"
subTitle="Sorry, something went wrong."
extra={<Button type="primary">Back Home</Button>}
/>
);
export default App;