mirror of
https://github.com/zhigang1992/nativewind.git
synced 2026-06-14 17:59:08 +08:00
15 lines
362 B
TypeScript
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>
|
|
);
|
|
}
|