diff --git a/package-lock.json b/package-lock.json index ef31ed4..69ded77 100644 --- a/package-lock.json +++ b/package-lock.json @@ -2066,9 +2066,9 @@ } }, "@types/react-native": { - "version": "0.63.51", - "resolved": "https://registry.npmjs.org/@types/react-native/-/react-native-0.63.51.tgz", - "integrity": "sha512-lpJdBF7T/nZigbequu7p4NptZmTUKq8R7vRADkk00H8DR5igspL10B1F58MvNTu8o/TyqzPISyWoRARqaIy+mw==", + "version": "0.64.0", + "resolved": "https://registry.npmjs.org/@types/react-native/-/react-native-0.64.0.tgz", + "integrity": "sha512-yys0k6tNby1VxEVfuxpaJRUChMer7lvnxSQfK6EtpxV8rtNk8boo/nQJkUoXgIi0mdhC1pj72flztdkj6wOHPA==", "requires": { "@types/react": "*" } @@ -12225,9 +12225,9 @@ } }, "react-native-elements": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/react-native-elements/-/react-native-elements-3.3.0.tgz", - "integrity": "sha512-GNvS7/26WNo0ovZ2vQWRFWJxhyDeBrGakFSX0aCey69B6KtZQh8gaFGF6CutlRjMzVfZTHGU2+0NS8A0dNWhAA==", + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/react-native-elements/-/react-native-elements-3.3.2.tgz", + "integrity": "sha512-bDWQt0WEuJEOrwzSYx0mVBV3aoRtJAsK0Kc2sioMsshSEhPOZK17Ccx+EvLBSpZ9uWxPyx42Z7hUH/8dQNu67g==", "requires": { "@types/react-native-vector-icons": "^6.4.6", "color": "^3.1.2", diff --git a/src/containers/Drawer/index.jsx b/src/containers/Drawer/index.jsx index 9a040a7..1ad9a80 100644 --- a/src/containers/Drawer/index.jsx +++ b/src/containers/Drawer/index.jsx @@ -1,26 +1,25 @@ -import React from "react"; -import PropTypes from "prop-types"; +import { Button, Container } from "@material-ui/core"; import AppBar from "@material-ui/core/AppBar"; import CssBaseline from "@material-ui/core/CssBaseline"; - import Drawer from "@material-ui/core/Drawer"; import Hidden from "@material-ui/core/Hidden"; import IconButton from "@material-ui/core/IconButton"; - import List from "@material-ui/core/List"; import ListItem from "@material-ui/core/ListItem"; -import { GitHub } from "@material-ui/icons"; import ListItemText from "@material-ui/core/ListItemText"; - -import MenuIcon from "@material-ui/icons/Menu"; +import { makeStyles, useTheme } from "@material-ui/core/styles"; import Toolbar from "@material-ui/core/Toolbar"; import Typography from "@material-ui/core/Typography"; -import { Button, Container } from "@material-ui/core"; -import { makeStyles, useTheme } from "@material-ui/core/styles"; - -import Navigation from "../Navigation"; +import { GitHub } from "@material-ui/icons"; +import MenuIcon from "@material-ui/icons/Menu"; +import PropTypes from "prop-types"; +import React from "react"; import { Link } from "react-router-dom"; -import { Components_Index } from "../Navigation"; +import Navigation, { Components_Index } from "../Navigation"; + + + + const drawerWidth = 200; @@ -92,7 +91,7 @@ function ResponsiveDrawer(props) {