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