frontend client for gemstone. decentralised workplace app

refactor: stub welcome screen

serenity 290b8e88 00f26152

Changed files
+6 -1
src
components
Home
+6 -1
src/components/Home/index.tsx
···
+
import { Text } from "@/components/primitives/Text";
import { View } from "react-native";
export const Home = () => {
-
return <View></View>;
+
return (
+
<View>
+
<Text>Welcome! Channels are on the left :D</Text>
+
</View>
+
);
};