dashboard/src/components/Layout/Layout.tsx

15 lines
208 B
TypeScript

import React from 'react';
import { HeaderLIT } from '../Header';
const Layout: React.FC = ({ children }) => {
return (
<>
<HeaderLIT />
{children}
</>
);
};
export default Layout;