17 lines
237 B
Text
17 lines
237 B
Text
# -*- mode: snippet -*-
|
|
# name: react native functional component
|
|
# key: rnfc
|
|
# --
|
|
import { Text, View } from "react-native";
|
|
|
|
const ${1:App} = () => {
|
|
return (
|
|
<View>
|
|
<Text>$1</Text>
|
|
</View>
|
|
);
|
|
}
|
|
|
|
export default $1;
|
|
|
|
|