frontend client for gemstone. decentralised workplace app
at main 636 B view raw
1import { ChannelSettings } from "@/components/Settings/ChannelSettings"; 2import { LatticeSettings } from "@/components/Settings/LatticeSettings"; 3import { ShardSettings } from "@/components/Settings/ShardSettings"; 4import { View } from "react-native"; 5 6export const Settings = () => { 7 return ( 8 <View 9 style={{ 10 flex: 1, 11 flexDirection: "column", 12 padding: 32, 13 gap: 16, 14 alignItems: "center", 15 }} 16 > 17 <ChannelSettings /> 18 <ShardSettings /> 19 <LatticeSettings /> 20 </View> 21 ); 22};