mirror of
https://github.com/hatchet-dev/hatchet.git
synced 2026-01-04 07:39:43 -06:00
* feat: snippets * feat: first couple paragraphs * feat: flesh out hatchet examples * fix: one more * feat: log view * fix: cleanup * feat: another section * fix: fmt * feat: debugging section * fix: proofread * fix: lint * chore: gen * fix: copilot * fix: copilot * feat: add blog post link * fix: feedback * chore: sdk ver * chore: gen * fix: ugh
8 lines
205 B
TypeScript
8 lines
205 B
TypeScript
export function LogViewer({ children }: { children: React.ReactNode }) {
|
|
return (
|
|
<div className="py-4 my-4 max-h-96 overflow-auto">
|
|
<pre className="text-sm">{children}</pre>
|
|
</div>
|
|
);
|
|
}
|