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) => (