mirror of
https://github.com/harivansh-afk/Saas-Teamspace.git
synced 2026-04-15 04:03:31 +00:00
11 lines
250 B
TypeScript
11 lines
250 B
TypeScript
interface HeaderProps {
|
|
title: string
|
|
}
|
|
|
|
export const Header = ({ title }: HeaderProps) => {
|
|
return (
|
|
<div className="w-full flex flex-col items-center justify-center">
|
|
<h1 className="text-3xl font-bold ">{title}</h1>
|
|
</div>
|
|
)
|
|
}
|