Skip to content

Commit

Permalink
chore: change imports
Browse files Browse the repository at this point in the history
  • Loading branch information
pure-js committed Oct 27, 2023
1 parent 0ada08c commit 8d4aa99
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/app/page.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// import { useEffect, useState } from 'react';

import Table from '../components/table';
import { getManufacturers } from '../api/index';
import Table from '@/components/table';
import { getManufacturers } from '@/api/index';

import styles from '@/components/layout/grid.module.css';

Expand Down
2 changes: 1 addition & 1 deletion src/components/table/Table.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import { useRouter } from 'next/navigation';
import { ArrowTopRightOnSquareIcon } from '@heroicons/react/24/outline';

import { getFlagByCountryName } from '../../helpers/getEmojiFlagByISO';
import { getFlagByCountryName } from '@/helpers/getEmojiFlagByISO';
// import { toLamaCase } from './toLamaCase';

import '@/helpers/helpers.css';
Expand Down

0 comments on commit 8d4aa99

Please sign in to comment.