mirror of
https://github.com/wassname/talk.git
synced 2026-06-28 23:42:44 +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;
|