Skip to content

Commit

Permalink
more app.js changes
Browse files Browse the repository at this point in the history
  • Loading branch information
meixingc committed Mar 24, 2023
1 parent 5185d00 commit 18e83c9
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions client/src/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,10 @@ export default function App() {
const [ accessToken, setAccessToken ] = useState('')
const [ songQueue, setSongQueue ] = useState([])

const [users, setUsers] = useState(null)
const [comments, setComments] = useState(null)
const [posts, setPosts] = useState(null)
const [followers, setFollowers] = useState(null)
const [ users, setUsers ] = useState(null)
const [ comments, setComments ] = useState(null)
const [ posts, setPosts ] = useState(null)
const [ followers, setFollowers ] = useState(null)

// Required modules
const qs = require('qs')
Expand Down

0 comments on commit 18e83c9

Please sign in to comment.