Skip to content

Commit 4554aa4

Browse files
committed
Clean up the code a bit
1 parent 6677f17 commit 4554aa4

File tree

12 files changed

+0
-134
lines changed

12 files changed

+0
-134
lines changed

app/components/Button/Button.js

Lines changed: 0 additions & 43 deletions
This file was deleted.

app/components/Button/index.js

Lines changed: 0 additions & 1 deletion
This file was deleted.

app/components/Button/style.scss

Lines changed: 0 additions & 28 deletions
This file was deleted.

app/components/Button/tests/index.test.js

Lines changed: 0 additions & 54 deletions
This file was deleted.

app/components/Footer/Footer.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
import React from 'react';
2-
32
import './style.scss';
43

54
const Footer = () => (

app/components/Header/Header.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
import React from 'react';
22
import { Link } from 'react-router-dom';
3-
43
import Banner from './images/banner.jpg';
54
import './style.scss';
65

app/components/List/List.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
import React from 'react';
22
import PropTypes from 'prop-types';
3-
43
import './style.scss';
54

65
const List = (props) => {

app/components/ListItem/ListItem.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
import React from 'react';
22
import PropTypes from 'prop-types';
3-
43
import './style.scss';
54

65
const ListItem = (props) => (

app/components/LoadingIndicator/LoadingIndicator.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
import React from 'react';
2-
32
import './style.scss';
43

54
const LoadingIndicator = () => (

app/containers/FeaturePage/FeaturePage.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
*/
66
import React from 'react';
77
import { Helmet } from 'react-helmet';
8-
98
import './style.scss';
109

1110
export default class FeaturePage extends React.Component {

app/containers/NotFoundPage/NotFoundPage.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
*/
66

77
import React from 'react';
8-
98
import './style.scss';
109

1110
export default function NotFound() {

app/containers/RepoListItem/RepoListItem.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66

77
import React from 'react';
88
import PropTypes from 'prop-types';
9-
109
import ListItem from 'components/ListItem';
1110
import { IssueIcon } from 'components/Icons';
1211
import './style.scss';

0 commit comments

Comments
 (0)