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 8753960 commit b0b4433Copy full SHA for b0b4433
src/index.js
@@ -8,7 +8,11 @@ import "./index.css";
8
import Book from "./Book";
9
import { books } from "./books_data";
10
11
+// testing
12
+import { greeting } from "./testing/test";
13
+
14
function Booklist() {
15
+ console.log(greeting);
16
return (
17
<section className="book-list">
18
{books.map((book, index) => {
src/testing/test.js
@@ -0,0 +1,3 @@
1
+export { greeting };
2
3
+const greeting = "Hello World";
0 commit comments