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 fe431a5 commit 80bb9d4Copy full SHA for 80bb9d4
src/01-introduction/03-navigating-jsx-types.problem.tsx
@@ -2,11 +2,12 @@ export const Component = () => {
2
return (
3
<div
4
// How do I figure out what type aria-posinset expects?
5
- aria-posinset={}
+ aria-posinset={1}
6
// How do I figure out what type onChange expects?
7
- onChange={}
+ onChange={(e) => {}}
8
9
// How do I get autocomplete with JSX?
10
+
11
/>
12
);
13
};
0 commit comments