Untitled
unknown
plain_text
8 months ago
671 B
6
Indexable
import React from 'react';
import { usePageTitle } from '../../hooks';
import TopMenuInventory from './TopMenuInventory';
// import { TabContent } from './types';
import { tabContents } from './data';
const Inventory = () => {
// Set page title
usePageTitle({
title: 'Inventory',
breadCrumbItems: [
{
path: 'dashboard/inventory',
label: 'Inventory',
active: true,
},
],
});
// Actual return
return (
<div>
<TopMenuInventory tabContents={tabContents} />
</div>
);
};
export default Inventory;
Editor is loading...
Leave a Comment