index
:
kakoune-config
main
phenax-patch-1
My personal kakoune configuration
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
snippets
/
typescript
/
react-component.tsx
blob: 5a2723b6375dc9d14b01a3c300687dbf6b602de3 (
plain
) (
blame
)
1
2
3
4
5
6
7
type
$1Prop
=
{
$2
}
export
const
$1
=
({
}
:
$1Prop
)
=>
{
return
<
div
>
$3
</
div
>;
};