mirror of
https://github.com/zhigang1992/nativewind.git
synced 2026-06-15 10:17:54 +08:00
13 lines
289 B
TypeScript
13 lines
289 B
TypeScript
import React from "react";
|
|
import { Text, View } from "react-native";
|
|
|
|
import "./styles.css";
|
|
|
|
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>
|
|
</View>
|
|
);
|
|
}
|