import React from 'react'; interface ReceivedProps { text: string; } // Needed because of https://github.com/microsoft/tslint-microsoft-contrib/issues/339 type Props = ReceivedProps; export const PillDivider: React.SFC = props => { return (
{props.text}
); };