Skip to content

Commit

Permalink
refactor: relocate generic components
Browse files Browse the repository at this point in the history
  • Loading branch information
remvze committed Apr 28, 2024
1 parent ae0cbf1 commit 4adfb3d
Show file tree
Hide file tree
Showing 8 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/components/modals/sleep-timer/sleep-timer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ import { Modal } from '@/components/modal';
import { FaPlay, FaUndo } from 'react-icons/fa/index';
import { useSoundStore } from '@/store';

import { Button } from '@/components/generic/button';
import { Timer } from '@/components/generic/timer';
import { Button } from '@/components/toolbox/generics/button';
import { Timer } from '@/components/timer';

import styles from './sleep-timer.module.css';

Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
4 changes: 2 additions & 2 deletions src/components/toolbox/pomodoro/pomodoro.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ import { FaUndo, FaPlay, FaPause } from 'react-icons/fa/index';
import { IoMdSettings } from 'react-icons/io/index';

import { Modal } from '@/components/modal';
import { Button } from '@/components/generic/button';
import { Timer } from '@/components/generic/timer';
import { Button } from '../generics/button';
import { Timer } from '@/components/timer';
import { Tabs } from './tabs';
import { Setting } from './setting';

Expand Down

0 comments on commit 4adfb3d

Please sign in to comment.