Skip to content

Commit 4ed1cb7

Browse files
committed
minor changes
1 parent 0e065f2 commit 4ed1cb7

File tree

3 files changed

+11
-13
lines changed

3 files changed

+11
-13
lines changed

src/App.jsx

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,14 @@
1-
// src/App.jsx
2-
import HomePageGz from './components/Homepage'
3-
import TaxForm from './components/TaxForm'
4-
import './styles/main.css'
1+
import HomePageG from "./components/HomePage";
2+
import TaxForm from "./components/TaxForm";
3+
import "./styles/main.css";
54

6-
function App () {
5+
function App() {
76
return (
87
<div>
9-
<HomePageGz />
8+
<HomePageG />
109
<TaxForm />
1110
</div>
12-
)
11+
);
1312
}
1413

15-
export default App
14+
export default App;

src/components/Homepage.jsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
// src/components/HomePage.jsx
21
const HomePage = () => (
32
<section className="home">
43
<h1>AI Tax Filing Assistant</h1>

src/index.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import ReactDOM from 'react-dom/client'
2-
import Appz from './App'
1+
import ReactDOM from "react-dom/client";
2+
import Appz from "./App";
33

4-
const root = ReactDOM.createRoot(document.getElementById('root'))
5-
root.render(<Appz />)
4+
const root = ReactDOM.createRoot(document.getElementById("root"));
5+
root.render(<Appz />);

0 commit comments

Comments
 (0)