mirror of
https://git.meshkee.com/Meshkee/dashboards.git
synced 2026-08-11 22:30:58 +04:30
Ship my-products / customer-products UI with gallery uploads, status controls, module gating, and related shared UI polish. Co-authored-by: Cursor <cursoragent@cursor.com>
17 lines
397 B
TypeScript
17 lines
397 B
TypeScript
import { Outlet } from 'react-router-dom'
|
|
import { Header } from './Header'
|
|
import styles from './AddMyProductLayout.module.css'
|
|
|
|
export function AddMyProductLayout() {
|
|
return (
|
|
<div className={styles.page}>
|
|
<Header hideMenu showBrand />
|
|
<main className={styles.main}>
|
|
<div className={styles.container}>
|
|
<Outlet />
|
|
</div>
|
|
</main>
|
|
</div>
|
|
)
|
|
}
|