## Configure your application Add Amplify to your app with `yarn` or `npm`: ```bash npm install aws-amplify @react-native-async-storage/async-storage @react-native-community/netinfo ``` In your app's entry point i.e. **App.js** (Expo) or **index.js** (React Native CLI), import and load the configuration file: ```javascript import { Amplify, API, graphqlOperation } from 'aws-amplify'; import awsconfig from './aws-exports'; Amplify.configure(awsconfig); ```