Skip to content

Commit

Permalink
warnings removed
Browse files Browse the repository at this point in the history
  • Loading branch information
aliarslanansari committed Jul 5, 2021
1 parent 8691a9f commit f15f678
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion client/src/components/layouts/NotFoundPage.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import React, { Fragment } from 'react'
import React from 'react'

const NotFoundPage = () => {
return (
Expand Down
2 changes: 1 addition & 1 deletion client/src/components/post/Post.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import React, { Fragment, useEffect } from 'react'
import React, { useEffect } from 'react'
import PropTypes from 'prop-types'
import { connect } from 'react-redux'
import { getPost } from './../../actions/post'
Expand Down
2 changes: 1 addition & 1 deletion client/src/components/posts/Posts.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import React, { useEffect, Fragment } from 'react'
import React, { useEffect } from 'react'
import { connect } from 'react-redux'
import { PropTypes } from 'prop-types'
import { getPosts } from './../../actions/post'
Expand Down
2 changes: 1 addition & 1 deletion client/src/components/profile-forms/AddEducation.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import PropTypes from 'prop-types'
import { connect } from 'react-redux'
import { addEducation } from './../../actions/profile'
import { Link, withRouter } from 'react-router-dom'
import React, { Fragment, useState } from 'react'
import React, { useState } from 'react'

const AddEducation = ({ history, addEducation }) => {
const [formData, setFormData] = useState({
Expand Down
2 changes: 1 addition & 1 deletion client/src/components/profile-forms/AddExperience.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import PropTypes from 'prop-types'
import { connect } from 'react-redux'
import { addExperience } from './../../actions/profile'
import { Link, withRouter } from 'react-router-dom'
import React, { Fragment, useState } from 'react'
import React, { useState } from 'react'

const AddExperience = ({ history, addExperience }) => {
const [formData, setFormData] = useState({
Expand Down

0 comments on commit f15f678

Please sign in to comment.