Fix lint errors

This commit is contained in:
Cédric FAMIBELLE-PRONZOLA
2021-09-21 21:28:04 +02:00
parent d1bb5ce0f7
commit aa65b41206
9 changed files with 13 additions and 15 deletions
+2 -2
View File
@@ -1,4 +1,4 @@
import React from 'react'
import {useState} from 'react'
import PropTypes from 'prop-types'
import {useRouter} from 'next/router'
@@ -72,7 +72,7 @@ const useStyles = makeStyles(theme => ({
export default function Navigasyon({selectedTab}) {
const router = useRouter()
const classes = useStyles()
const [value, setValue] = React.useState(0)
const [value, setValue] = useState(0)
const handleChange = (event, newValue) => {
setValue(newValue)