запросы идут на shub
This commit is contained in:
parent
a4332b2dae
commit
a352e3d899
@ -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 React from "react"
|
||||||
import {Typography, Box, TableHead, TableRow, TableCell, Table, TableBody} from "@mui/material";
|
import {Typography, Box, TableHead, TableRow, TableCell, Table, TableBody} from "@mui/material"
|
||||||
|
|
||||||
export default () => (
|
export default () => (
|
||||||
<>
|
<>
|
||||||
@ -518,4 +518,4 @@ export default () => (
|
|||||||
|
|
||||||
</Box>
|
</Box>
|
||||||
</>
|
</>
|
||||||
);
|
)
|
@ -1,5 +1,5 @@
|
|||||||
import React from "react";
|
import React from "react"
|
||||||
import { Typography, Box } from "@mui/material";
|
import { Typography, Box } from "@mui/material"
|
||||||
|
|
||||||
export default () => (
|
export default () => (
|
||||||
<>
|
<>
|
||||||
@ -523,4 +523,4 @@ export default () => (
|
|||||||
</Box>
|
</Box>
|
||||||
</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"
|
import { Outlet, useNavigate} from "react-router-dom"
|
||||||
|
|
||||||
|
|
||||||
export default function Component() {
|
export default function Component() {
|
||||||
const theme = useTheme();
|
const theme = useTheme()
|
||||||
const isMobile = useMediaQuery(theme.breakpoints.down("md"));
|
const isMobile = useMediaQuery(theme.breakpoints.down("md"))
|
||||||
const navigate = useNavigate()
|
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(() => {
|
React.useEffect(() => {
|
||||||
document.getElementsByTagName("html")[0].scrollTop = 0;
|
document.getElementsByTagName("html")[0].scrollTop = 0
|
||||||
}, []);
|
}, [])
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<>
|
<>
|
||||||
@ -139,5 +139,5 @@ export default function Component() {
|
|||||||
</Box>
|
</Box>
|
||||||
</SwipeableDrawer>
|
</SwipeableDrawer>
|
||||||
</>
|
</>
|
||||||
);
|
)
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user