import React, { SFC } from 'react'; interface LoadingPlaceholderProps { text: string; } export const LoadingPlaceholder: SFC = ({ text }) => (
{text}
);