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