File tree Expand file tree Collapse file tree 3 files changed +11
-13
lines changed Expand file tree Collapse file tree 3 files changed +11
-13
lines changed Original file line number Diff line number Diff line change 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" ;
5
4
6
- function App ( ) {
5
+ function App ( ) {
7
6
return (
8
7
< div >
9
- < HomePageGz />
8
+ < HomePageG />
10
9
< TaxForm />
11
10
</ div >
12
- )
11
+ ) ;
13
12
}
14
13
15
- export default App
14
+ export default App ;
Original file line number Diff line number Diff line change 1
- // src/components/HomePage.jsx
2
1
const HomePage = ( ) => (
3
2
< section className = "home" >
4
3
< h1 > AI Tax Filing Assistant</ h1 >
Original file line number Diff line number Diff line change 1
- import ReactDOM from ' react-dom/client'
2
- import Appz from ' ./App'
1
+ import ReactDOM from " react-dom/client" ;
2
+ import Appz from " ./App" ;
3
3
4
- const root = ReactDOM . createRoot ( document . getElementById ( ' root' ) )
5
- root . render ( < Appz /> )
4
+ const root = ReactDOM . createRoot ( document . getElementById ( " root" ) ) ;
5
+ root . render ( < Appz /> ) ;
You can’t perform that action at this time.
0 commit comments