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 980204f commit bb32d9fCopy full SHA for bb32d9f
client/src/components/search/Search.js
@@ -22,17 +22,17 @@ function Search({ loading, setLoading }) {
22
return (
23
<div className="tab-content">
24
<div className="search-section">
25
- <h2>🔍 Search</h2>
+ <h2>🔍 Find </h2>
26
<div className="search-form">
27
<input
28
type="text"
29
- placeholder="Search users, products, tasks..."
+ placeholder="Find users, products, tasks..."
30
value={searchQuery}
31
onChange={(e) => setSearchQuery(e.target.value)}
32
onKeyPress={(e) => e.key === 'Enter' && handleSearch()}
33
/>
34
<button onClick={handleSearch} disabled={loading}>
35
- {loading ? 'Searching...' : 'Search'}
+ {loading ? 'Finding...' : 'Find'}
36
</button>
37
</div>
38
0 commit comments