# How to add Search in starter-kit
Search has been implemented in the full-version only. If you have started your project using the starter kit as per our suggestion, please follow the below steps in order to implement search functionality:
- Copy
full-version/src/layouts/components/Autocomplete.tsxfile and paste it in the same path in thestarter-kitfolder
Using fake-db
- Copy the
full-version/src/@fake-db/app-bar-search/index.tsfile &AppBarSearchTypetype from thefull-version/src/@fake-db/types.tsfile and paste them into the same paths in thestarter-kitfolder
Not using fake-db
Update the
useEffecthook (in which API is called usingaxios) according to the your requirement and also copy theAppBarSearchTypetype from thefull-version/src/@fake-db/types.tsfile & paste it in thestarter-kit/src/layouts/components/Autocomplete.tsxfile.Import
starter-kit/src/layouts/components/Autocomplete.tsxfile in thestarter-kit/src/layouts/components/vertical/AppBarContent.tsxand/orstarter-kit/src/layouts/components/horizontal/AppBarContent.tsxfile(s) and use it in whichever way you want
And this is it. Enjoy searching in the template.