This is a Template for Context Api in react created by Siva Krishna Reddy.
The Context api elements include Actions, Reducers, Store, Types
Create a Store in a file and Export it.
| ## Reactive Search Component Angular | |
| https://psivakrishnareddy.medium.com/reactive-search-component-using-rxjs-angular-app-explained-d9a10daab8e0 | |
| import { Component, ElementRef, EventEmitter, OnInit, Output } from '@angular/core'; | |
| import { Observable, fromEvent } from 'rxjs'; | |
| import { debounceTime, distinctUntilChanged, filter, map } from 'rxjs/operators'; | |
| import { SearchResults } from 'src/app/shared/models/search-result.model'; | |
| import { anyService } from 'any.service'; | |
| @Component({ |