aboutsummaryrefslogtreecommitdiff
path: root/src/NotFound.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/NotFound.js')
-rw-r--r--src/NotFound.js24
1 files changed, 11 insertions, 13 deletions
diff --git a/src/NotFound.js b/src/NotFound.js
index 8f04084..55ff50a 100644
--- a/src/NotFound.js
+++ b/src/NotFound.js
@@ -2,17 +2,15 @@ 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>
- )
-}
+ 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; \ No newline at end of file
+export default NotFound;