Skip to content

Commit

Permalink
explorer-client: apply linting rules
Browse files Browse the repository at this point in the history
* also rename index.scss to index.css (leftover from scss removing)
  • Loading branch information
pchrysochoidis committed Mar 7, 2022
1 parent d21b67c commit d86d1af
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions explorer/client/src/app/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import Footer from '../components/footer/Footer';
import Header from '../components/header/Header';
import Search from '../components/search/Search';
import AppRoutes from '../pages/config/AppRoutes';

import styles from './App.module.css';

function App() {
Expand Down
1 change: 1 addition & 0 deletions explorer/client/src/components/footer/Footer.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import { Link } from 'react-router-dom';

import ExternalLink from '../external-link/ExternalLink';

import styles from './Footer.module.css';

function Footer() {
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion explorer/client/src/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { BrowserRouter as Router } from 'react-router-dom';
import App from './app/App';
import reportWebVitals from './utils/reportWebVitals';

import './index.scss';
import './index.css';

ReactDOM.render(
<React.StrictMode>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import { useParams } from 'react-router-dom';

import mockTransactionData from '../../utils/transaction_mock.json';

import styles from './TransactionResult.module.css';

type DataType = {
Expand Down

0 comments on commit d86d1af

Please sign in to comment.