Create own flake for emacs

This commit is contained in:
Tobias Ostner 2025-04-21 17:53:35 +02:00
parent 75be932b45
commit 98c77fe32e
11 changed files with 174 additions and 129 deletions

View file

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