15 lines
410 B
TypeScript
15 lines
410 B
TypeScript
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 />
|
|
</>
|
|
);
|
|
} |