Initial check in; All but the history pages working.

This commit is contained in:
2022-09-07 08:58:00 -07:00
commit d6bd620207
109 changed files with 13170 additions and 0 deletions

View File

@@ -0,0 +1,30 @@
import { Meteor } from 'meteor/meteor';
import React, {lazy, Suspense, useState} from 'react';
import { useTracker } from 'meteor/react-meteor-data';
import _ from 'lodash';
import TabNav from '../util/TabNav';
export default () => {
let tabs = [
{
title: "Asset List",
getElement: () => {
const AssetList = lazy(()=>import('./Assets/AssetList'))
return <AssetList/>
},
path: '/assetList',
href: 'assetList'
},
{
title: "Add Assets",
getElement: () => {
const AddAssets = lazy(()=>import('./Assets/AddAssets'))
return <AddAssets/>
},
path: '/addAssets',
href: 'addAssets'
},
]
return <TabNav tabs={tabs}/>
}