pleroma-like client for Bluesky pl.hexmani.ac
bluesky pleroma social-media
1import { killSession, loginState } from "../components/login"; 2 3const Dashboard = () => { 4 if (!loginState()) { 5 location.href = "/"; 6 } 7 8 return ( 9 <div> 10 <h1>Dashboard</h1> 11 <button onclick={killSession}>Log out</button> 12 </div> 13 ); 14}; 15 16export default Dashboard;