Files
fe_portal_frontend/src/layouts/Index.tsx

15 lines
324 B
TypeScript
Raw Normal View History

import React from 'react';
import Header from './Header';
const LayoutIndex: React.FC = (props) => {
const { children } = props;
return (
<>
<Header />
2025-06-16 16:22:26 +08:00
<div className="layout-content">
<div className='layout-content-main'>{children}</div>
</div>
</>
);
};
export default LayoutIndex;