blob: 8f040840f6a3027fda989b353da686391ebc2954 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
import React from "react";
import { Header, Icon } from "semantic-ui-react";
const NotFound = () => {
return (
<div style={{ "margin-top": "50px" }}>
<Header as='h1' icon textAlign='center'>
<Icon name='bug' />
404
<Header.Subheader>
Recurso no encontrado
</Header.Subheader>
</Header>
</div>
)
}
export default NotFound;
|