Files
fe_portal_frontend/src/layouts/Index.tsx

13 lines
227 B
TypeScript
Raw Normal View History

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