Skip to content

Commit

Permalink
+
Browse files Browse the repository at this point in the history
  • Loading branch information
InnaAnatoliivna committed Aug 9, 2023
1 parent 776d131 commit 0deac28
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/components/add-contact/add-contact.jsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { useState } from 'react';
import { getRandomId } from 'components/random-id'
import css from 'components/add-contact/add-contact.module.css';
import css from 'components/Add-contact/add-contact.module.css';
import { useDispatch, useSelector } from 'react-redux';
import { selectorContacts } from 'redux/selectors';
import { addContact } from 'redux/reducers/contactsSlice';
Expand Down
2 changes: 1 addition & 1 deletion src/components/savedContact/savedContact.jsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { IoMdContact } from 'react-icons/io';
import css from 'components/savedContact/savedContact.module.css'
import css from 'components/SavedContact/savedContact.module.css'

const SavedContact = ({ id, name, number }) => {

Expand Down
2 changes: 1 addition & 1 deletion src/components/title/head.jsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import css from 'components/title/head.module.css'
import css from 'components/Title/head.module.css'

const Head = ({ headTitle }) => {
return (
Expand Down
2 changes: 1 addition & 1 deletion src/components/title/section-title.jsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import css from 'components/title/section-title.module.css'
import css from 'components/Title/section-title.module.css'

const Section = ({ title, children }) => {
return (
Expand Down

0 comments on commit 0deac28

Please sign in to comment.