mirror of
https://github.com/aljazceru/rabbit.git
synced 2025-12-18 14:34:25 +01:00
12 lines
270 B
TypeScript
12 lines
270 B
TypeScript
import type { PlainText } from '@/nostr/parseTextNote';
|
|
|
|
export type PlainTextDisplayProps = {
|
|
plainText: PlainText;
|
|
};
|
|
|
|
const PlainTextDisplay = (props: PlainTextDisplayProps) => {
|
|
return <span>{props.plainText.content}</span>;
|
|
};
|
|
|
|
export default PlainTextDisplay;
|