Hey is a decentralized and permissionless social media app built with Lens Protocol 馃尶
at main 20 lines 491 B view raw
1import NotLoggedIn from "@/components/Shared/NotLoggedIn"; 2import PageLayout from "@/components/Shared/PageLayout"; 3import { useAccountStore } from "@/store/persisted/useAccountStore"; 4import Tokens from "./Tokens"; 5 6const DeveloperSettings = () => { 7 const { currentAccount } = useAccountStore(); 8 9 if (!currentAccount) { 10 return <NotLoggedIn />; 11 } 12 13 return ( 14 <PageLayout title="Developer settings"> 15 <Tokens /> 16 </PageLayout> 17 ); 18}; 19 20export default DeveloperSettings;