dotfiles/flakes/emacs/config/snippets/tsx-ts-mode/rnfc
2025-04-21 17:53:35 +02:00

17 lines
237 B
Text

# -*- 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;