diff options
Diffstat (limited to 'src/NotFound.js')
-rw-r--r-- | src/NotFound.js | 18 |
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 |