Skip to content

Commit a2263b2

Browse files
committed
2nd commit
1 parent edb0efa commit a2263b2

File tree

3 files changed

+4
-6
lines changed

3 files changed

+4
-6
lines changed

public/index.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<meta name="theme-color" content="#000000" />
88
<meta
99
name="description"
10-
content="Web site created using create-react-app"
10+
content="compiler created using create-react-app"
1111
/>
1212
<link rel="apple-touch-icon" href="%PUBLIC_URL%/logo192.png" />
1313
<!--
@@ -24,7 +24,7 @@
2424
work correctly both with client-side routing and a non-root public URL.
2525
Learn how to configure a non-root public URL by running `npm run build`.
2626
-->
27-
<title>React App</title>
27+
<title>Compiler App</title>
2828
</head>
2929
<body>
3030
<noscript>You need to enable JavaScript to run this app.</noscript>

src/Components/Navbar.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ const Navbar = ({ userLang, setUserLang, userTheme,
1616
]
1717
return (
1818
<div className="navbar">
19-
<h1>Geeks Code Compiler</h1>
19+
<h1>Compiler</h1>
2020
<Select options={languages} value={userLang}
2121
onChange={(e) => setUserLang(e.value)}
2222
placeholder={userLang} />

src/index.js

+1-3
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,5 @@ root.render(
1111
</React.StrictMode>
1212
);
1313

14-
// If you want to start measuring performance in your app, pass a function
15-
// to log results (for example: reportWebVitals(console.log))
16-
// or send to an analytics endpoint. Learn more: https://bit.ly/CRA-vitals
14+
1715
reportWebVitals();

0 commit comments

Comments
 (0)