dotfiles/nix/config/emacs/snippets/tsx-ts-mode/rnfc
2024-11-04 09:21:50 +01: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;