yasnippet-snippets/snippets/reason-mode/component

10 lines
161 B
Plaintext

# -*- mode: snippet -*-
# name: component
# key: component
# --
module ${1:Component} = {
[@react.component]
let make = (${2:parameters}) => {
$0
};
};