mirror of
https://github.com/Funkoala14/KnowledgeBase_OOIN.git
synced 2025-06-08 16:58:13 +08:00
13 lines
254 B
React
13 lines
254 B
React
|
import React from 'react';
|
||
|
import HeaderWithNav from './HeaderWithNav';
|
||
|
import "../styles/layouts.scss"
|
||
|
|
||
|
export default function Mainlayout({ children }) {
|
||
|
return (
|
||
|
<>
|
||
|
<HeaderWithNav />
|
||
|
{children}
|
||
|
</>
|
||
|
);
|
||
|
}
|