aboutsummaryrefslogtreecommitdiff
path: root/mobile/hello-world/screens/SettingsScreen.js
blob: 6957dcbfb3aca629d966449f127c990c421e0621 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import React from 'react';
import { ExpoConfigView } from '@expo/samples';

export default class SettingsScreen extends React.Component {
  static navigationOptions = {
    title: 'app.json',
  };

  render() {
    /* Go ahead and delete ExpoConfigView and replace it with your
     * content, we just wanted to give you a quick view of your config */
    return <ExpoConfigView />;
  }
}