blob: 55ff50a448bee1e78da36872b34f643ef87fb68e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
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;
|