yasnippet-snippets/snippets/rjsx-mode/React/rfc

16 lines
299 B
Plaintext
Raw Normal View History

2019-02-28 21:03:22 +01:00
# -*- mode: snippet -*-
# uuid: 65bc7baa-3368-4398-a208-fb1d92694183
# contributor: Jimmy Yuen Ho Wong <wyuenho@gmail.com>
# name: reactFunctionalComponent
# key: rfc
# --
import React from 'react'
export default function ${1:${TM_FILENAME_BASE}}() {
return (
<div>
$0
</div>
)
2019-02-28 21:36:05 +01:00
}