export const meta = {
  title: `Identify entities from images`,
  description: `Learn more about how to identify entities from an image using Amplify.`
};

import identifyEntityJs from '/src/fragments/lib/predictions/js/identify-entity.mdx';
import identifyEntityIOS from '/src/fragments/lib/predictions/ios/identify-entity.mdx';
import identifyEntityAndroid from '/src/fragments/lib/predictions/android/identify-entity.mdx';

<Fragments
  fragments={{
    js: identifyEntityJs,
    'react-native': identifyEntityJs,
    ios: identifyEntityIOS,
    android: identifyEntityAndroid
  }}
/>