mirror of
https://github.com/wassname/talk.git
synced 2026-06-30 00:33:54 +08:00
8 lines
148 B
JavaScript
8 lines
148 B
JavaScript
import React from 'react';
|
|
|
|
const TagLabel = ({children}) => <div className='talk-plugin-tag-label'>
|
|
{children}
|
|
</div>;
|
|
|
|
export default TagLabel;
|