20 lines
502 B
JavaScript
20 lines
502 B
JavaScript
import React from 'react'
|
|
import Breadcrumb from '../../components/common/Breadcrumb'
|
|
import TenantForm from '../../components/Tenant/TenantForm'
|
|
|
|
const CreateTenant = () => {
|
|
return (
|
|
<div className='container-fluid'>
|
|
<Breadcrumb
|
|
data={[
|
|
{ label: "Home", link: "/dashboard" },
|
|
{ label: "Tenant", link: '/tenants' },
|
|
{ label: "New Tenant", link: null },
|
|
]}
|
|
/>
|
|
<TenantForm/>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export default CreateTenant |