Last change
on this file since efaa053 was e6c2521, checked in by darsov2 <62809499+darsov2@…>, 13 months ago |
images upload/download impl, other fixes
|
-
Property mode
set to
100644
|
File size:
1.3 KB
|
Rev | Line | |
---|
[e6c2521] | 1 | import React from "react";
|
---|
| 2 | import {Container, Col, Row, Image, Tabs, Tab} from "react-bootstrap";
|
---|
| 3 | import Navigation from "../Components/Layout/Navbar/Navigation";
|
---|
| 4 | import ResourcesTab from "../Components/Resources/ResourcesTab";
|
---|
| 5 | import {useState} from "react";
|
---|
| 6 | import useGet from "../Components/Hooks/useGet";
|
---|
| 7 | import {useAuth} from "../Components/Context/AuthContext";
|
---|
| 8 | import {Navigate} from "react-router-dom";
|
---|
| 9 | import {FaCheckCircle} from "react-icons/fa";
|
---|
| 10 | import UnapprovedBusinessesTable from "../Components/AdminPanel/UnapprovedBusinessesTable";
|
---|
| 11 | import UnapprovedProfilesTable from "../Components/AdminPanel/UnapprovedProfilesTable";
|
---|
| 12 | import AllProfilesTable from "../Components/AdminPanel/AllProfilesTable";
|
---|
| 13 | import TypeSelectionTab from "../Components/UserPanel/TypeSelectionTab";
|
---|
| 14 |
|
---|
| 15 | const UserReservationsManagement = (props) => {
|
---|
| 16 |
|
---|
| 17 | console.log(props.tab)
|
---|
| 18 |
|
---|
| 19 |
|
---|
| 20 | return (
|
---|
| 21 | <>
|
---|
| 22 | <Navigation/>
|
---|
| 23 | <Container>
|
---|
| 24 | <Row className="mb-5">
|
---|
| 25 | <h2 style={{color: "#159895", textAlign: "left"}}>Менаџмент со резервации</h2>
|
---|
| 26 | </Row>
|
---|
| 27 | </Container>
|
---|
| 28 | <Container>
|
---|
| 29 | <TypeSelectionTab/>
|
---|
| 30 | </Container>
|
---|
| 31 | </>)
|
---|
| 32 | }
|
---|
| 33 |
|
---|
| 34 | export default UserReservationsManagement; |
---|
Note:
See
TracBrowser
for help on using the repository browser.