mirror of
https://github.com/wassname/talk.git
synced 2026-07-12 04:57:54 +08:00
9 lines
247 B
JavaScript
9 lines
247 B
JavaScript
import React from 'react';
|
|
import {TabCount} from 'plugin-api/beta/client/components/ui';
|
|
|
|
export default ({active, asset: {recentComments}}) => (
|
|
<span>
|
|
Featured <TabCount active={active} sub>{recentComments.length}</TabCount>
|
|
</span>
|
|
);
|