a tool for shared writing and social publishing
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

add share menu to mobile

+2
+2
components/MobileFooter.tsx
··· 3 3 import { Media } from "./Media"; 4 4 import { ThemePopover } from "./ThemeManager/ThemeSetter"; 5 5 import { TextToolbar } from "components/Toolbar"; 6 + import { ShareOptions } from "./ShareOptions"; 6 7 7 8 export function MobileFooter(props: { entityID: string }) { 8 9 let focusedBlock = useUIState((s) => s.focusedBlock); ··· 19 20 ) : ( 20 21 <div className="z-10 pb-2 px-2 flex gap-[6px] items-center justify-end"> 21 22 <ThemePopover entityID={props.entityID} /> 23 + <ShareOptions rootEntity={props.entityID} /> 22 24 </div> 23 25 )} 24 26 </Media>