refactor: relocate generic components

This commit is contained in:
MAZE 2024-04-29 00:38:15 +03:30
parent ae0cbf1aa3
commit 4adfb3ddc9
8 changed files with 4 additions and 4 deletions

View file

@ -3,8 +3,8 @@ import { Modal } from '@/components/modal';
import { FaPlay, FaUndo } from 'react-icons/fa/index'; import { FaPlay, FaUndo } from 'react-icons/fa/index';
import { useSoundStore } from '@/store'; import { useSoundStore } from '@/store';
import { Button } from '@/components/generic/button'; import { Button } from '@/components/toolbox/generics/button';
import { Timer } from '@/components/generic/timer'; import { Timer } from '@/components/timer';
import styles from './sleep-timer.module.css'; import styles from './sleep-timer.module.css';

View file

@ -3,8 +3,8 @@ import { FaUndo, FaPlay, FaPause } from 'react-icons/fa/index';
import { IoMdSettings } from 'react-icons/io/index'; import { IoMdSettings } from 'react-icons/io/index';
import { Modal } from '@/components/modal'; import { Modal } from '@/components/modal';
import { Button } from '@/components/generic/button'; import { Button } from '../generics/button';
import { Timer } from '@/components/generic/timer'; import { Timer } from '@/components/timer';
import { Tabs } from './tabs'; import { Tabs } from './tabs';
import { Setting } from './setting'; import { Setting } from './setting';