Some checks failed
Publish Docker image (amd64, English) / Push Docker image to multiple registries (push) Has been cancelled
Publish Docker image (amd64) / Push Docker image to multiple registries (push) Has been cancelled
Publish Docker image (arm64) / Push Docker image to multiple registries (push) Has been cancelled
Linux Release / release (push) Has been cancelled
macOS Release / release (push) Has been cancelled
Windows Release / release (push) Has been cancelled
19 lines
348 B
JavaScript
19 lines
348 B
JavaScript
import React from 'react';
|
|
import { Segment, Header } from 'semantic-ui-react';
|
|
|
|
const NotFound = () => (
|
|
<>
|
|
<Header
|
|
block
|
|
as='h4'
|
|
content='404'
|
|
attached='top'
|
|
icon='info'
|
|
className='small-icon'
|
|
/>
|
|
<Segment attached='bottom'>未找到所请求的页面</Segment>
|
|
</>
|
|
);
|
|
|
|
export default NotFound;
|