mirror of
https://github.com/zhigang1992/examples.git
synced 2026-01-12 22:47:03 +08:00
16 lines
461 B
JavaScript
16 lines
461 B
JavaScript
import React from 'react';
|
|
import { SafeAreaView, Text, View } from 'react-native';
|
|
import tailwind from 'tailwind-rn';
|
|
|
|
export default function App() {
|
|
return (
|
|
<SafeAreaView style={tailwind('flex-1 items-center justify-center')}>
|
|
<View style={tailwind('bg-blue-500 px-5 py-3 rounded-full')}>
|
|
<Text style={tailwind('text-white font-semibold text-lg')}>
|
|
Hello Tailwind 👋
|
|
</Text>
|
|
</View>
|
|
</SafeAreaView>
|
|
);
|
|
}
|