Skip to content

Commit

Permalink
Revert "Refactoring Frontend components (#391)"
Browse files Browse the repository at this point in the history
This reverts commit 9d11037.
  • Loading branch information
vaibhavdaren committed Apr 7, 2020
1 parent 9d11037 commit 0bc181a
Show file tree
Hide file tree
Showing 53 changed files with 1,348 additions and 1,465 deletions.
89 changes: 89 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@
"axios": "^0.19.1",
"boostrap": "^2.0.0",
"node-sass": "^4.13.0",
"prop-types": "^15.7.2",
"react": "^16.12.0",
"react-bootstrap": "^1.0.0-beta.16",
"react-cookies": "^0.1.1",
Expand Down
42 changes: 0 additions & 42 deletions src/404/NotFound.js

This file was deleted.

34 changes: 34 additions & 0 deletions src/404/notFound.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
import React from "react";
import { Link } from "react-router-dom";

import "./notFound.scss";
import { DonutTitle } from "../donutTitle/donutTitle";

import donut from "../images/donut.png";

const NotFound = () => {
return (
<div className="not-found-container">
<div className="header">
<DonutTitle />
</div>
<div className="content">
<div className="content__title">
<span className="title__text">4</span>
<span className="title__donut">
<img src={donut} alt="donut" />
</span>
<span className="title__text">4</span>
</div>
<div className="content__message">
<p>We weren't able to find the address you requested, <br /> the link must be old or broken</p>
</div>
<div className="content__redirect">
<p>Go to <Link className="redirect-link"to="/dashboard">Dashboard</Link></p>
</div>
</div>
</div>
)
}

export default NotFound;
155 changes: 0 additions & 155 deletions src/Icons/SVGIcon.js

This file was deleted.

6 changes: 0 additions & 6 deletions src/Icons/SVGIcon.scss

This file was deleted.

File renamed without changes.
Loading

0 comments on commit 0bc181a

Please sign in to comment.