Files
nativewind/examples/expo/App.tsx
2022-08-26 16:10:52 +10:00

15 lines
362 B
TypeScript

import React from "react";
import { StatusBar } from "expo-status-bar";
import { Text, View } from "react-native";
import "./styles";
export default function App() {
return (
<View className="flex-1 items-center justify-center bg-white">
<Text>Open up App.js to start working on your app!</Text>
<StatusBar style="auto" />
</View>
);
}