diff --git a/explorer/client/src/app/App.tsx b/explorer/client/src/app/App.tsx index c3560d2d09a53..5050d6f6cc01e 100644 --- a/explorer/client/src/app/App.tsx +++ b/explorer/client/src/app/App.tsx @@ -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() { diff --git a/explorer/client/src/components/footer/Footer.tsx b/explorer/client/src/components/footer/Footer.tsx index 0acd47ead55ac..b7a0ff8d3799e 100644 --- a/explorer/client/src/components/footer/Footer.tsx +++ b/explorer/client/src/components/footer/Footer.tsx @@ -1,6 +1,7 @@ import { Link } from 'react-router-dom'; import ExternalLink from '../external-link/ExternalLink'; + import styles from './Footer.module.css'; function Footer() { diff --git a/explorer/client/src/index.scss b/explorer/client/src/index.css similarity index 100% rename from explorer/client/src/index.scss rename to explorer/client/src/index.css diff --git a/explorer/client/src/index.tsx b/explorer/client/src/index.tsx index 4932206a33e86..b6d765987ec60 100644 --- a/explorer/client/src/index.tsx +++ b/explorer/client/src/index.tsx @@ -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( diff --git a/explorer/client/src/pages/transaction-result/TransactionResult.tsx b/explorer/client/src/pages/transaction-result/TransactionResult.tsx index 8118014ca5aaf..4710acffa29a3 100644 --- a/explorer/client/src/pages/transaction-result/TransactionResult.tsx +++ b/explorer/client/src/pages/transaction-result/TransactionResult.tsx @@ -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 = {