Skip to content

Commit

Permalink
feat: add HeaderTitle component
Browse files Browse the repository at this point in the history
Co-authored-by: Evan Suhyeong Lee <devleesche@gmail.com>
  • Loading branch information
manvinderjit and sounmind committed Feb 15, 2025
1 parent d9f8dfb commit f399728
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions src/components/HeaderTitle/HeaderTitle.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
import type { ReactNode } from 'react';

interface Props {
children: ReactNode;
}

const HeaderTitle = ({ children }: Props) => <h1>{children}</h1>;

export default HeaderTitle;

0 comments on commit f399728

Please sign in to comment.