import { translate, fixMe } from 'i18n-calypso'; import { Component } from 'react'; import DocumentHead from 'calypso/components/data/document-head'; import NavigationHeader from 'calypso/components/navigation-header'; import Stream from 'calypso/reader/stream'; import EmptyContent from './empty'; const title = translate( 'My Likes' ); const documentTitle = translate( '%s ‹ Reader', { args: title, comment: '%s is the section name. For example: "My Likes"', } ); const emptyContent = () => ; class LikedStream extends Component { render() { return ( <> ); } } export default LikedStream;