Skip to content

Commit 80bb9d4

Browse files
add solution excercise 03
1 parent fe431a5 commit 80bb9d4

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/01-introduction/03-navigating-jsx-types.problem.tsx

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,12 @@ export const Component = () => {
22
return (
33
<div
44
// How do I figure out what type aria-posinset expects?
5-
aria-posinset={}
5+
aria-posinset={1}
66
// How do I figure out what type onChange expects?
7-
onChange={}
7+
onChange={(e) => {}}
88

99
// How do I get autocomplete with JSX?
10+
1011
/>
1112
);
1213
};

0 commit comments

Comments
 (0)