mirror of
https://github.com/Funkoala14/KnowledgeBase_OOIN.git
synced 2025-06-09 10:48:14 +08:00
15 lines
361 B
JavaScript
15 lines
361 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 />
|
|
<NotificationSnackbar />
|
|
{children}
|
|
</>
|
|
);
|
|
}
|