mirror of
https://github.com/usememos/memos.git
synced 2025-12-17 22:28:52 +08:00
9 lines
154 B
TypeScript
9 lines
154 B
TypeScript
interface Props {
|
|
content: string;
|
|
}
|
|
|
|
const Text: React.FC<Props> = ({ content }: Props) => {
|
|
return <span>{content}</span>;
|
|
};
|
|
|
|
export default Text;
|