We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7d6bc32 commit 0839f57Copy full SHA for 0839f57
data.js
@@ -1,5 +1,4 @@
1
export const userData = [
2
- { label: "Name", key: "name" },
3
{ label: "Username", key: "login" },
4
{ label: "Public Repositories", key: "public_repos" },
5
{ label: "Followers", key: "followers" },
index.html
@@ -33,6 +33,6 @@ <h1>Find The Github Account!</h1>
33
</div>
34
35
36
- <script src="./index.js" type="module" defer></script>
+ <script type="module" src="./index.js" defer></script>
37
</body>
38
</html>
index.js
@@ -1,4 +1,4 @@
-import { userData } from "./data";
+import { userData } from "./data.js";
const searchBtn = document.querySelector(".search-btn");
0 commit comments