chore: migrate example to TS

This commit is contained in:
satyajit.happy
2019-09-22 02:17:55 +02:00
parent d28d216b9a
commit 63e2ad56df
25 changed files with 312 additions and 243 deletions

View File

@@ -0,0 +1,15 @@
import * as React from 'react';
import { View } from 'react-native';
import { createStackNavigator } from 'react-navigation-stack';
class Screen extends React.Component {
static navigationOptions = {
header: null,
};
render() {
return <View style={{ flex: 1, backgroundColor: 'red' }} />;
}
}
export default createStackNavigator({ Screen });