mirror of
https://github.com/harivansh-afk/Saas-Teamspace.git
synced 2026-04-18 01:00:32 +00:00
initial commit
This commit is contained in:
commit
ef9ccf22d3
133 changed files with 20802 additions and 0 deletions
11
components/auth/header.tsx
Normal file
11
components/auth/header.tsx
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
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>
|
||||
)
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue