import { FC } from 'hono/jsx'; const Header: FC = (props) => { return (
{props.title}
); }; export default Header;