mobX - Filter countries in react native?
I have an array of 3 countries and a text input to filter them. If you type in the text input, it should check for what you typed against the country name, which should return the new filtered list of countries that match the filtered text. It should also display the inputted text next to Typed Text: import React, { Component } from 'react' import { View, Text, TextInput } from 'react-native' import { observable, action } from 'mobx'; import { observer } from 'mobx-react/native' @observer export default class Country extends Component { @observable filterTermValue; @observable countriesList =