swgs
Version:
swgs is a compatiblity layer between svg and react-native-svg
15 lines (12 loc) • 389 B
JavaScript
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 />;
}
}