Skip to content

Commit 0920e62

Browse files
Update App.jsx
Added English comments to App.jsx for better code documentation. The comments explain the purpose of each import, the main App component, and the export statement, without changing any functionality. This improves readability and helps other developers understand the code more easily.
1 parent 0db49a5 commit 0920e62

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

src/App.jsx

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
1-
import React from 'react'
2-
import './App.css'
3-
import Login from './login/Login.jsx'
1+
import React from 'react' // Import React library
2+
import './App.css' // Import global CSS styles
3+
import Login from './login/Login.jsx' // Import the Login component
44

55
function App() {
66
return (
7-
<div className="App">
8-
<Login />
7+
<div className="App"> {/* Main container with CSS class "App" */}
8+
<Login /> {/* Render the Login component */}
99
</div>
1010
)
1111
}
1212

13-
export default App
13+
export default App // Export App component as default

0 commit comments

Comments
 (0)