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