запросы идут на shub

This commit is contained in:
Nastya 2024-01-18 00:16:06 +03:00
parent a4332b2dae
commit a352e3d899
5 changed files with 708 additions and 708 deletions

@ -1 +1 @@
REACT_APP_DOMAIN="https://hub.pena.digital"
REACT_APP_DOMAIN="https://shub.pena.digital"

@ -1 +1 @@
REACT_APP_DOMAIN=""
REACT_APP_DOMAIN="https://shub.pena.digital"

@ -1,5 +1,5 @@
import React from "react";
import {Typography, Box, TableHead, TableRow, TableCell, Table, TableBody} from "@mui/material";
import React from "react"
import {Typography, Box, TableHead, TableRow, TableCell, Table, TableBody} from "@mui/material"
export default () => (
<>
@ -518,4 +518,4 @@ export default () => (
</Box>
</>
);
)

@ -1,5 +1,5 @@
import React from "react";
import { Typography, Box } from "@mui/material";
import React from "react"
import { Typography, Box } from "@mui/material"
export default () => (
<>
@ -523,4 +523,4 @@ export default () => (
</Box>
</Box>
</>
);
)

@ -1,19 +1,19 @@
import React from "react";
import React from "react"
import { Box, useMediaQuery, useTheme, Button, SwipeableDrawer, IconButton } from "@mui/material";
import { Box, useMediaQuery, useTheme, Button, SwipeableDrawer, IconButton } from "@mui/material"
import { Outlet, useNavigate} from "react-router-dom"
export default function Component() {
const theme = useTheme();
const isMobile = useMediaQuery(theme.breakpoints.down("md"));
const theme = useTheme()
const isMobile = useMediaQuery(theme.breakpoints.down("md"))
const navigate = useNavigate()
const [valueButton, setValueButton] = React.useState("");
const [valueButton, setValueButton] = React.useState("")
const [drawer, setDrawer] = React.useState(false);
const [drawer, setDrawer] = React.useState(false)
React.useEffect(() => {
document.getElementsByTagName("html")[0].scrollTop = 0;
}, []);
document.getElementsByTagName("html")[0].scrollTop = 0
}, [])
return (
<>
@ -139,5 +139,5 @@ export default function Component() {
</Box>
</SwipeableDrawer>
</>
);
)
}