Untitled
unknown
plain_text
10 days ago
671 B
3
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