From cca4002e164019d587d31063cc88d3f5623208af Mon Sep 17 00:00:00 2001 From: imnyang Date: Sat, 27 Dec 2025 18:20:50 +0900 Subject: [PATCH] feat: Enhance result display by formatting content with line breaks --- src/components/txt.tsx | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/components/txt.tsx b/src/components/txt.tsx index 329adc8..014892b 100644 --- a/src/components/txt.tsx +++ b/src/components/txt.tsx @@ -83,7 +83,12 @@ export default function TXT({ onHover }: TXTProps) { 비밀.txt - {content} + {content.split('\n').map((line, idx) => ( + + {line} +
+
+ ))}