10 lines
299 B
JavaScript
10 lines
299 B
JavaScript
export default function TelegramPreview({ payload }) {
|
|
if (!payload) return null;
|
|
return (
|
|
<section className="screener-card">
|
|
<h3>텔레그램 미리보기</h3>
|
|
<pre style={{whiteSpace:'pre-wrap', fontFamily:'monospace', fontSize:12}}>{payload.text}</pre>
|
|
</section>
|
|
);
|
|
}
|