website/src/app/_components/header.tsx
2025-11-18 00:40:48 -08:00

16 lines
284 B
TypeScript

import React from "react";
import Ansi from "./ansi";
interface HeaderProps {
content: string;
className?: string;
}
export default function Header({ content, className }: HeaderProps) {
return (
<div className={className}>
<Ansi>{content}</Ansi>
</div>
);
}