Files
hoanghapc_nextJs/src/app/tuyen-dung/layout.tsx

15 lines
410 B
TypeScript
Raw Normal View History

2026-02-09 16:46:26 +07:00
import type { ReactNode } from 'react';
import Header from "@/components/other/otherHeader";
import Footer from "@/components/other/otherFooter";
import '@/styles/static_page.css';
import '@/styles/tuyen_dung.css';
export default function TuyenDungLayout({ children }: { children: ReactNode }) {
return (
<>
<Header />
{children}
<Footer />
</>
);
}