dashboard/src/components/Layout/Layout.tsx

15 lines
202 B
TypeScript
Raw Normal View History

2021-09-27 12:17:33 +02:00
import React from 'react';
import { Header } from '../Header';
2022-02-09 09:03:44 +00:00
const Layout: React.FC = ({ children }) => {
2021-09-27 12:17:33 +02:00
return (
<>
<Header />
{children}
</>
);
};
export default Layout;