mirror of
https://github.com/zoriya/Kyoo.git
synced 2025-11-03 02:57:13 -05:00
20 lines
336 B
TypeScript
20 lines
336 B
TypeScript
import { Text, View } from "react-native";
|
|
import { useYoshiki } from "yoshiki/native";
|
|
|
|
export default function MyApp() {
|
|
const { css } = useYoshiki();
|
|
|
|
return (
|
|
<View
|
|
{...css({
|
|
flex: 1,
|
|
justifyContent: "center",
|
|
alignItems: "center",
|
|
minHeight: "100%",
|
|
})}
|
|
>
|
|
<Text>Hello from One</Text>
|
|
</View>
|
|
);
|
|
}
|