Skip to content

Commit 33e1be3

Browse files
authored
Update index.js
minor typo fix
1 parent ec34754 commit 33e1be3

File tree

1 file changed

+1
-1
lines changed
  • exercises/03.1-your-first-component

1 file changed

+1
-1
lines changed

exercises/03.1-your-first-component/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@ export const PrintHello = () => {
55
return <h1>I Love React</h1>;
66
};
77

8-
// change the syntaxt of the first parameter to make it <PrintHello /> instead of PrintHello()
8+
// change the syntax of the first parameter to make it <PrintHello /> instead of PrintHello()
99
ReactDOM.render(PrintHello(), document.querySelector("#myDiv"));

0 commit comments

Comments
 (0)