mirror of
https://github.com/vitodeploy/vito.git
synced 2025-07-01 22:16:15 +00:00
6 lines
202 B
TypeScript
6 lines
202 B
TypeScript
import { ReactNode } from 'react';
|
|
|
|
export default function HeaderContainer({ children }: { children: ReactNode }) {
|
|
return <div className="flex items-start justify-between gap-2">{children}</div>;
|
|
}
|