setSearchText((e.target as HTMLInputElement).value)}
+ onInput={(e) => setSearchText((e.target as HTMLInputElement).value)}
/>
-
- {
- searchResults.map(roadmap => {
- const isSelected = teamResourceConfig.find(r => r.resourceId === roadmap.id);
- return (
-
-
- {roadmap.title}
-
-
-
- )
- })
- }
- {
- searchResults.length === 0 && (
-
- No roadmaps found
+
+ {searchResults.map((roadmap) => {
+ const isSelected = teamResourceConfig.find(
+ (r) => r.resourceId === roadmap.id
+ );
+ return (
+
+ {roadmap.title}
+
- )
- }
+ );
+ })}
+ {searchResults.length === 0 && (
+
No roadmaps found
+ )}
-
+