import * as React from 'react'; import Button from '../shared/Button'; import { BoxTitleText, SmallMutedText } from '../shared/CustomTexts'; interface Props { followed: boolean; submitFollow(): void; isLoggedIn: boolean; } const ActionBox = ({followed, submitFollow, isLoggedIn}: Props) => (
Actions

{ followed ? 'you\'re receiving notifications about new updates on this post' : 'you won\'t receive notifications about this post' }
); export default ActionBox;