From 59fe4555c23f556361f13f952cd13ff73511f9b9 Mon Sep 17 00:00:00 2001 From: moist-webDev Date: Tue, 23 May 2023 20:14:13 -0400 Subject: [PATCH] changed to typescript --- App.js => App.tsx | 1 + tsconfig.json | 3 +++ 2 files changed, 4 insertions(+) rename App.js => App.tsx (94%) create mode 100644 tsconfig.json diff --git a/App.js b/App.tsx similarity index 94% rename from App.js rename to App.tsx index 09f879b..2421b8a 100644 --- a/App.js +++ b/App.tsx @@ -2,6 +2,7 @@ import { StatusBar } from 'expo-status-bar'; import { StyleSheet, Text, View } from 'react-native'; export default function App() { + const stuff:unknown = {} return ( Open up App.js to start working on your app! diff --git a/tsconfig.json b/tsconfig.json new file mode 100644 index 0000000..cdf2ed7 --- /dev/null +++ b/tsconfig.json @@ -0,0 +1,3 @@ +{ + "extends": "@tsconfig/react-native/tsconfig.json" +} \ No newline at end of file