Reputation: 313
I am using Semantic UI React , I want to remove suggested text from search box . I am new to Semantic UI React , I will be very thankful if someone help me to remove suggested Text . Please see an attachment .
Code
import { Search } from 'semantic-ui-react';
<Search placeholder={"Search by Name, Email , Phone , Website"} />
Upvotes: 2
Views: 1415
Reputation: 430
<Search placeholder={"Search by Name, Email , Phone , Website"} showNoResults={false} />
This with no source or api should do the trick.
Upvotes: 3