-
Notifications
You must be signed in to change notification settings - Fork 966
/
Copy pathApp.js
31 lines (30 loc) · 1.17 KB
/
App.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
import { Image } from "react-native";
export default function App() {
return (
<main className="flex-1 items-center justify-center">
<article className="md:flex bg-slate-100 rounded-xl p-8 md:p-0 dark:bg-slate-800">
<Image
className="w-24 h-24 md:w-48 md:h-auto md:rounded-none rounded-full mx-auto"
source={{
uri: "https://en.gravatar.com/userimage/120276729/078ee8361156d0e1c37b90e7851fed4b.png",
}}
width="384"
height="512"
/>
<main className="pt-6 md:p-8 text-center md:text-left space-y-4">
<p className="text-lg font-medium">
With <code>@expo/html-elements</code>, you can write HTML syntax
that renders to real native components. Combined with Tailwind CSS,
you have an experience that makes web developers feel at home.”
</p>
<article className="font-medium">
<p className="text-sky-500 dark:text-sky-400 my-0">Evan Bacon</p>
<p className="text-slate-700 dark:text-slate-500 my-2">
Engineer, Expo
</p>
</article>
</main>
</article>
</main>
);
}