Files
oms-website-nextjs/components/Header.tsx
2025-05-18 09:39:57 +02:00

14 lines
298 B
TypeScript

// components/Header.tsx (Server Component)
import React from "react";
import HeaderClient from "./HeaderClient";
const Header = async () => {
// Fetch session data on the server
// Pass the session data and YOUR Server Actions as props
return <HeaderClient />;
};
export default Header;