This repository has been archived on 2026-01-22. You can view files and clone it, but cannot push or open issues or pull requests.
factuges_2025/packages/ui/components/header.tsx

14 lines
215 B
TypeScript
Raw Normal View History

2025-04-27 20:47:47 +00:00
import React from "react";
interface HeaderProps {
title: string;
}
export const Header: React.FC<HeaderProps> = ({ title }) => {
return (
<header id="header">
<h1>{title}</h1>
</header>
);
};