Hey is a decentralized and permissionless social media app built with Lens Protocol 馃尶
at main 13 lines 309 B view raw
1import { PERMISSIONS } from "@hey/data/constants"; 2import ProToggle from "./ProToggle"; 3 4const BetaToggle = () => ( 5 <ProToggle 6 description="Get early access to new features" 7 group={PERMISSIONS.BETA} 8 heading="Beta" 9 selectIsOn={(account) => account.isBeta} 10 /> 11); 12 13export default BetaToggle;