mirror of
https://github.com/jeffvli/feishin.git
synced 2026-05-08 04:50:12 +02:00
19 lines
456 B
TypeScript
19 lines
456 B
TypeScript
import { Outlet } from 'react-router';
|
|
|
|
import styles from './auth-layout.module.css';
|
|
|
|
import { Titlebar } from '/@/renderer/features/titlebar/components/titlebar';
|
|
|
|
export const AuthLayout = () => {
|
|
return (
|
|
<>
|
|
<div className={styles.windowTitlebarContainer}>
|
|
<Titlebar />
|
|
</div>
|
|
<div className={styles.contentContainer}>
|
|
<Outlet />
|
|
</div>
|
|
</>
|
|
);
|
|
};
|