mirror of
https://github.com/Funkoala14/KnowledgeBase_OOIN.git
synced 2025-06-08 07:48:17 +08:00
14 lines
324 B
JavaScript
14 lines
324 B
JavaScript
import React from 'react';
|
|
import HeaderWithNav from './HeaderWithNav';
|
|
import '../styles/style.scss';
|
|
import NotificationSnackbar from '../components/NotificationSnackbar';
|
|
|
|
export default function Mainlayout({ children }) {
|
|
return (
|
|
<>
|
|
<HeaderWithNav />
|
|
{children}
|
|
</>
|
|
);
|
|
}
|