
App.tsx 파일을 찾아 App.js로 이름을 변경한다.import React from 'react';
import { View, Text } from 'react-native';
const App: React.FC = () => {
return (
<View>
<Text>Hello, World!</Text>
</View>
);
};
export default App;import React from 'react';
import { View, Text } from 'react-native';
const App = () => {
return (
<View>
<Text>Hello, World!</Text>
</View>
);
};
export default App;npm uninstall typescript @types/react @types/react-nativetsconfig.json 파일 삭제한다.
