2020-04-08 10:38:14 -03:00

15 lines
232 B
Plaintext

# -*- mode: snippet -*-
# name: React Functional Component
# key: rfc
# --
import React from 'react';
import $1 from 'react-native';
const $2 = ($3) => {
return (
$0
);
};
export default ${2:$(yas-text)};