Begin work on BOD-6

This commit is contained in:
Patrick Fic
2020-03-10 18:13:31 -07:00
parent 0377603732
commit 73d4112123
7 changed files with 395 additions and 1 deletions

View File

@@ -2,6 +2,7 @@ import { Tabs } from "antd";
import React, { useEffect } from "react";
import { useTranslation } from "react-i18next";
import ShopEmployeesContainer from "../../components/shop-employees/shop-employees.container";
import ShopInfoContainer from "../../components/shop-info/shop-info.container";
export default function ShopPage() {
const { t } = useTranslation();
@@ -12,7 +13,7 @@ export default function ShopPage() {
return (
<Tabs>
<Tabs.TabPane tab="Shop Info" key="info">
Shop INfo
<ShopInfoContainer />
</Tabs.TabPane>
<Tabs.TabPane tab="Employees" key="employees">
<ShopEmployeesContainer />