dotfiles/flakes/emacs/config/snippets/tsx-ts-mode/rnfc
2025-12-31 10:22:59 +01:00

15 lines
229 B
Text

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