aboutsummaryrefslogtreecommitdiff
path: root/src/NotFound.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/NotFound.js')
-rw-r--r--src/NotFound.js18
1 files changed, 18 insertions, 0 deletions
diff --git a/src/NotFound.js b/src/NotFound.js
new file mode 100644
index 0000000..8f04084
--- /dev/null
+++ b/src/NotFound.js
@@ -0,0 +1,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; \ No newline at end of file