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