17 lines
331 B
Markdown
17 lines
331 B
Markdown
```SnackPlayer name=Hello%20World
|
|
import React from 'react';
|
|
import { Text, View } from 'react-native';
|
|
|
|
const YourApp = () => {
|
|
return (
|
|
<View style={{ flex: 1, justifyContent: "center", alignItems: "center" }}>
|
|
<Text>
|
|
Try editing me! 🎉
|
|
</Text>
|
|
</View>
|
|
);
|
|
}
|
|
|
|
export default YourApp;
|
|
```
|