Change directory structure

This commit is contained in:
Tobias Ostner 2024-12-28 11:13:47 +01:00
parent 8f5cba33ae
commit cd825ea3e6
16 changed files with 0 additions and 0 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;