Files
nativewind/apps/example/app.js
2022-07-28 18:29:33 -03:00

21 lines
491 B
JavaScript

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