mirror of
https://github.com/OwethuManagedServices/oms-website-nextjs.git
synced 2025-12-17 18:58:10 +00:00
14 lines
298 B
TypeScript
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;
|