14 lines
459 B
TypeScript
14 lines
459 B
TypeScript
import { Outlet } from 'react-router-dom'
|
|
import LandingHeader from './LandingHeader'
|
|
|
|
export default function AuthenticatedLayout() {
|
|
return (
|
|
<div className="authenticated-layout" style={{ minHeight: '100vh', display: 'flex', flexDirection: 'column' }}>
|
|
<LandingHeader />
|
|
<div className="authenticated-content" style={{ flex: 1, paddingTop: '80px' }}>
|
|
<Outlet />
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|