KnowledgeBase_frontend/src/layouts/Mainlayout.jsx

13 lines
254 B
React
Raw Normal View History

2025-02-27 06:54:19 +08:00
import React from 'react';
import HeaderWithNav from './HeaderWithNav';
import "../styles/layouts.scss"
export default function Mainlayout({ children }) {
return (
<>
<HeaderWithNav />
{children}
</>
);
}