Files
nativewind/apps/example/app.js
2022-07-07 09:01:18 +10:00

18 lines
412 B
JavaScript

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