17 lines
337 B
JavaScript
17 lines
337 B
JavaScript
import React from 'react'
|
|
import Layout from '../layout'
|
|
|
|
function DashboardPage({ user, children }) {
|
|
return (
|
|
<Layout
|
|
user={user}
|
|
title='داشبورد'
|
|
name='dashboard'
|
|
isSidebar={true}
|
|
>
|
|
{children}
|
|
</Layout>
|
|
)
|
|
}
|
|
|
|
export default DashboardPage |